aboutsummaryrefslogtreecommitdiffstats
path: root/libj2_j2u_imply_bit_to_j2u.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-12-05 20:43:23 +0100
committerMattias Andrée <m@maandree.se>2025-12-05 20:48:59 +0100
commitf05fdeb727a2fc8052900a159c225d328d603acc (patch)
tree9c56ef8fea9964decd3c24f5b03f1341266f779b /libj2_j2u_imply_bit_to_j2u.c
parentFirst commit (diff)
downloadlibj2-f05fdeb727a2fc8052900a159c225d328d603acc.tar.gz
libj2-f05fdeb727a2fc8052900a159c225d328d603acc.tar.bz2
libj2-f05fdeb727a2fc8052900a159c225d328d603acc.tar.xz
Second commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r--libj2_j2u_imply_bit_to_j2u.c72
1 files changed, 72 insertions, 0 deletions
diff --git a/libj2_j2u_imply_bit_to_j2u.c b/libj2_j2u_imply_bit_to_j2u.c
new file mode 100644
index 0000000..7dfc6d4
--- /dev/null
+++ b/libj2_j2u_imply_bit_to_j2u.c
@@ -0,0 +1,72 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+extern inline void libj2_j2u_imply_bit_to_j2u(const struct libj2_j2u *a, unsigned b, struct libj2_j2u *res);
+/* TODO Add man page */
+
+
+#else
+
+static uintmax_t
+random_ju(void)
+{
+ size_t n = LIBJ2_JU_BIT;
+ uintmax_t r = 0;
+ while (n--)
+ if (rand() < rand())
+ r |= (uintmax_t)1 << n;
+ return r;
+}
+
+
+static void
+check(uintmax_t high, uintmax_t low, unsigned shift)
+{
+ struct libj2_j2u a, r, expected;
+
+ a.high = high;
+ a.low = low;
+
+ libj2_ju_lsh_to_j2u(1U, shift, &expected);
+ libj2_j2u_imply_j2u_to_j2u(&a, &expected, &expected);
+
+ r = (struct libj2_j2u){111, 222};
+ libj2_j2u_imply_bit_to_j2u(&a, shift, &r);
+ EXPECT(a.high == high);
+ EXPECT(a.low == low);
+ EXPECT(libj2_j2u_eq_j2u(&r, &expected));
+
+ r = a;
+ libj2_j2u_imply_bit_to_j2u(&r, shift, &r);
+ EXPECT(libj2_j2u_eq_j2u(&r, &expected));
+
+ r = a;
+ libj2_j2u_imply_bit(&r, shift);
+ EXPECT(libj2_j2u_eq_j2u(&r, &expected));
+}
+
+
+int
+main(void)
+{
+ unsigned i;
+
+ srand((unsigned)time(NULL));
+
+ for (i = 0; i < LIBJ2_J2U_BIT + 4U; i++) {
+ check(0, 0, i);
+ check(0, random_ju(), i);
+ check(0, UINTMAX_MAX, i);
+ check(random_ju(), 0, i);
+ check(random_ju(), random_ju(), i);
+ check(random_ju(), UINTMAX_MAX, i);
+ check(UINTMAX_MAX, 0, i);
+ check(UINTMAX_MAX, random_ju(), i);
+ check(UINTMAX_MAX, UINTMAX_MAX, i);
+ }
+
+ return 0;
+}
+
+#endif