HomeSort by relevance Sort by last modified time
    Searched refs:CHAR_BIT (Results 251 - 275 of 325) sorted by null

<<111213

  /external/srec/portable/src/
pcrc.c 135 #if CHAR_BIT <= 8
138 #elif CHAR_BIT <= 16
  /external/llvm/unittests/IR/
TypeBuilderTest.cpp 44 EXPECT_EQ(IntegerType::get(getGlobalContext(), sizeof(size_t) * CHAR_BIT),
46 EXPECT_EQ(IntegerType::get(getGlobalContext(), sizeof(ptrdiff_t) * CHAR_BIT),
  /bionic/libc/upstream-netbsd/libc/regex/
regexec.c 230 if (g->nstates <= (sopno)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE))
  /external/bison/lib/
strtol.c 148 : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1)))
bbitset.h 54 #define BITSET_WORD_BITS ((unsigned int) (CHAR_BIT * sizeof (bitset_word)))
57 in practice we lose at most a factor of CHAR_BIT by going with
vasnprintf.c 74 #include <limits.h> /* CHAR_BIT */
326 verify (sizeof (mp_limb_t) * CHAR_BIT == GMP_LIMB_BITS);
330 verify (sizeof (mp_twolimb_t) * CHAR_BIT == GMP_TWOLIMB_BITS);
    [all...]
quotearg.c 53 #define INT_BITS (sizeof (int) * CHAR_BIT)
  /external/dropbear/
buffer.c 328 if (*buf_getptr(buf, 1) & (1 << (CHAR_BIT-1))) {
  /external/dropbear/libtommath/
bn_mp_exptmod_fast.c 100 P->used < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
tommath.h 127 #define DIGIT_BIT ((int)((CHAR_BIT * sizeof(mp_digit) - 1))) /* bits per digit */
176 #define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 * DIGIT_BIT + 1))
  /external/freetype/include/freetype/config/
ftconfig.h 66 /* `CHAR_BIT' (defined in limits.h) gives the number of bits in a */
70 #define FT_CHAR_BIT CHAR_BIT
  /system/core/toolbox/
du.c 257 const int HTBITS = CHAR_BIT * sizeof(tmp);
  /external/wpa_supplicant_8/src/tls/
libtommath.c 17 #ifndef CHAR_BIT
18 #define CHAR_BIT 8
123 #define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 * DIGIT_BIT + 1))
345 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
357 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
522 (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
    [all...]
  /external/compiler-rt/test/Unit/
clzsi2_test.c 32 char assumption_2[sizeof(si_int)*CHAR_BIT == 32] = {0};
ctzsi2_test.c 32 char assumption_2[sizeof(si_int)*CHAR_BIT == 32] = {0};
  /external/dropbear/libtomcrypt/src/math/
gmp_desc.c 392 sizeof(mp_limb_t) * CHAR_BIT - GMP_NAIL_BITS,
  /external/dropbear/libtommath/mtest/
mpi.h 189 #define BYTES CHAR_BIT
mpi.c 506 if((res = s_mp_mul_2d(mp, CHAR_BIT)) != MP_OKAY)
510 (mp_digit)((v >> (ix * CHAR_BIT)) & UCHAR_MAX));
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 260 return NextChar*CHAR_BIT - BitsInCurWord;
  /external/openfst/src/include/fst/
pair-weight.h 93 const int rshift = CHAR_BIT * sizeof(size_t) - 5;
  /external/llvm/include/llvm/ADT/
APInt.h 89 CHAR_BIT,
    [all...]
SmallBitVector.h 39 NumBaseBits = sizeof(uintptr_t) * CHAR_BIT,
  /external/llvm/lib/Transforms/Utils/
Local.cpp 718 Hash = (Hash << 7) | (Hash >> (sizeof(uintptr_t) * CHAR_BIT - 7));
723 Hash = (Hash << 7) | (Hash >> (sizeof(uintptr_t) * CHAR_BIT - 7));
817 TrailZ = std::min(TrailZ, unsigned(sizeof(unsigned) * CHAR_BIT - 1));
    [all...]
  /bionic/libc/netbsd/net/
getaddrinfo.c     [all...]
  /dalvik/vm/oo/
Array.cpp 48 size_t elementShift = sizeof(size_t) * CHAR_BIT - 1 - CLZ(elemWidth);

Completed in 1059 milliseconds

<<111213