Searched refs:CHAR_BIT (Results 151 - 175 of 227) sorted by relevance

12345678910

/freebsd-current/contrib/bc/src/
H A Drand.c269 res |= ((ulong) (rand() & BC_RAND_SRAND_BITS)) << (i * CHAR_BIT);
H A Dvector.c250 idx >>= sizeof(uchar) * CHAR_BIT;
H A Dlibrary.c525 idx.i |= (ptr->gen_idx << ((sizeof(size_t) - 1) * CHAR_BIT));
1701 << (((ulong) CHAR_BIT) * (i % sizeof(ulong)));
/freebsd-current/contrib/ntp/libntp/lib/isc/unix/
H A Dfile.c143 (1ULL << (sizeof(times[0].tv_sec) * CHAR_BIT - 1))) != 0)
/freebsd-current/usr.bin/kdump/
H A Dlinux.c496 for (i = 1; i <= sz * CHAR_BIT; i++) {
/freebsd-current/usr.bin/gprof/
H A Dgprof.c281 histcounter_size = abs(histcounter_type) / CHAR_BIT;
/freebsd-current/sbin/fsck_ffs/
H A Dsetup.c151 bmapsize = roundup(howmany(maxfsblock, CHAR_BIT), sizeof(short));
/freebsd-current/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_value_prf.c70 #define NV_NUMSTR_MAX ((sizeof(uint64_t) * CHAR_BIT) + 1)
/freebsd-current/stand/libsa/
H A Dprintf.c52 #define MAXNBUF (sizeof(intmax_t) * CHAR_BIT + 1)
/freebsd-current/tools/test/gpioevents/
H A Dgpioevents.c141 for (size_t i = 0; i <= sizeof(short) * CHAR_BIT - 1; i++) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h118 return uint64_t(NextChar)*CHAR_BIT - BitsInCurWord;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_lib.h203 #define typeWidth (sizeof(rep_t) * CHAR_BIT)
/freebsd-current/lib/libc/resolv/
H A Dres_init.c492 m = sizeof(struct in6_addr) * CHAR_BIT;
500 m -= CHAR_BIT;
/freebsd-current/contrib/llvm-project/libcxx/src/include/
H A Dto_chars_floating_point.h51 static constexpr int32_t _Exponent_bits = sizeof(float) * CHAR_BIT - FLT_MANT_DIG;
74 static constexpr int32_t _Exponent_bits = sizeof(double) * CHAR_BIT - DBL_MANT_DIG;
/freebsd-current/bin/expr/
H A Dexpr.y196 #define NDIGITS(x) (3 * (sizeof(x) * CHAR_BIT) / 10 + 1 + 1 + 1)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h43 NumBaseBits = sizeof(uintptr_t) * CHAR_BIT,
H A DSparseBitVector.h47 BITWORD_SIZE = sizeof(BitWord) * CHAR_BIT,
/freebsd-current/contrib/tzcode/
H A Dprivate.h206 #include <limits.h> /* for CHAR_BIT et al. */
818 #define TYPE_BIT(type) (CHAR_BIT * (ptrdiff_t) sizeof(type))
/freebsd-current/sbin/sysctl/
H A Dsysctl.c1172 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4;
/freebsd-current/bin/ls/
H A Dls.c69 #define STRBUF_SIZEOF(t) (1 + CHAR_BIT * sizeof(t) / 3 + 1)
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCExpr.h48 NumSubclassDataBits == CHAR_BIT * (sizeof(unsigned) - sizeof(ExprKind)),
/freebsd-current/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h517 return ((sizeof(NullabilityPayload) * CHAR_BIT) / NullabilityKindSize);
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp316 unsigned SizeInBits = std::max<unsigned>(1L << NumCond, CHAR_BIT);
317 NextMCDCBitmapIdx += SizeInBits / CHAR_BIT;
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp194 auto *IntTy = Type::getIntNTy(*Ctx, sizeof(int) * CHAR_BIT);
467 auto *IntTy = Type::getIntNTy(*Ctx, sizeof(int) * CHAR_BIT);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h326 static const unsigned int BITS_PER_MASK_T = sizeof(mask_t) * CHAR_BIT;
549 static const int BITS_PER_MASK_T = sizeof(mask_t) * CHAR_BIT;

Completed in 309 milliseconds

12345678910