Searched refs:CHAR_BIT (Results 1 - 25 of 227) sorted by relevance

12345678910

/freebsd-current/tools/build/cross-build/include/linux/sys/
H A Dparam.h39 /* Without this include NBBY will reference the undefined variable CHAR_BIT */
40 #ifndef CHAR_BIT
41 #define CHAR_BIT 8 macro
/freebsd-current/bin/sh/
H A Darith.h32 #define DIGITS(var) (3 + (2 + CHAR_BIT * sizeof((var))) / 3)
/freebsd-current/contrib/ntp/libntp/lib/isc/unix/include/isc/
H A Doffset.h27 #include <limits.h> /* Required for CHAR_BIT. */
43 (~(((off_t)-1 >> (sizeof(off_t) * CHAR_BIT - 1)) \
44 << (sizeof(off_t) * CHAR_BIT - 1)))
/freebsd-current/contrib/ntp/libntp/lib/isc/win32/include/isc/
H A Doffset.h26 #include <limits.h> /* Required for CHAR_BIT. */
41 (~(((off_t)-1 >> (sizeof(off_t) * CHAR_BIT - 1)) \
42 << (sizeof(off_t) * CHAR_BIT - 1)))
/freebsd-current/lib/libc/string/
H A Dflsl.c46 return (mask == 0 ? 0 : CHAR_BIT * sizeof(mask) - __builtin_clzl(mask));
H A Dfls.c45 return (mask == 0 ? 0 : CHAR_BIT * sizeof(mask) - __builtin_clz(mask));
H A Dflsll.c45 return (mask == 0 ? 0 : CHAR_BIT * sizeof(mask) - __builtin_clzll(mask));
H A Dtimingsafe_memcmp.c32 int lt = (p1[i] - p2[i]) >> CHAR_BIT;
35 int gt = (p2[i] - p1[i]) >> CHAR_BIT;
/freebsd-current/lib/libc/gen/
H A Dconfstr.c80 if (sizeof(long) * CHAR_BIT == 32 &&
90 if (sizeof(long) * CHAR_BIT >= 64 &&
91 sizeof(void *) * CHAR_BIT >= 64 &&
92 sizeof(int) * CHAR_BIT >= 32 &&
101 if (sizeof(long) * CHAR_BIT >= 64)
/freebsd-current/contrib/llvm-project/clang/lib/Headers/
H A D__clang_hip_stdlib.h27 int __sgn = __x >> (sizeof(int) * CHAR_BIT - 1);
32 long __sgn = __x >> (sizeof(long) * CHAR_BIT - 1);
37 long long __sgn = __x >> (sizeof(long long) * CHAR_BIT - 1);
/freebsd-current/contrib/ntp/libntp/lib/isc/
H A Dtsmemcmp.c45 volatile unsigned int mask = (1u << CHAR_BIT);
54 return (int)(isGT >> CHAR_BIT) - (int)(isLT >> CHAR_BIT);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dnegvdi2.c21 (di_int)((du_int)1 << ((int)(sizeof(di_int) * CHAR_BIT) - 1));
H A Dnegvsi2.c21 (si_int)((su_int)1 << ((int)(sizeof(si_int) * CHAR_BIT) - 1));
H A Dabsvsi2.c20 const int N = (int)(sizeof(si_int) * CHAR_BIT);
H A Dabsvdi2.c20 const int N = (int)(sizeof(di_int) * CHAR_BIT);
H A Dnegvti2.c22 const ti_int MIN = (tu_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT) - 1);
H A Dclzti2.c26 ((si_int)f & ((si_int)(sizeof(di_int) * CHAR_BIT)));
H A Dffsti2.c26 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
H A Dffsdi2.c24 return ctzsi(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
H A Dctzti2.c26 ((si_int)f & ((si_int)(sizeof(di_int) * CHAR_BIT)));
H A Dabsvti2.c22 const int N = (int)(sizeof(ti_int) * CHAR_BIT);
/freebsd-current/lib/libc/quad/
H A Dquad.h77 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT)
78 #define LONG_BITS (sizeof(long) * CHAR_BIT)
79 #define HALF_BITS (sizeof(long) * CHAR_BIT / 2)
88 * (sizeof(long)*CHAR_BIT/2).
/freebsd-current/contrib/diff/lib/
H A Dinttostr.h41 #define INT_STRLEN_BOUND(t) ((sizeof (t) * CHAR_BIT - 1) * 302 / 1000 + 2)
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DOptionDefinition.h52 return llvm::isUInt<CHAR_BIT>(short_option) &&
/freebsd-current/sbin/restore/
H A Drestore.h140 (map[(u_int)((ino) - 1) / CHAR_BIT] & \
141 (1 << ((u_int)((ino) - 1) % CHAR_BIT)))
143 map[(u_int)((ino) - 1) / CHAR_BIT] |= \
144 1 << ((u_int)((ino) - 1) % CHAR_BIT)

Completed in 135 milliseconds

12345678910