HomeSort by relevance Sort by last modified time
    Searched refs:CHAR_BIT (Results 1 - 25 of 272) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/dropbear/libtommath/mtest/
mpi-types.h 8 #define MP_DIGIT_BIT (CHAR_BIT*sizeof(mp_digit))
10 #define MP_WORD_BIT (CHAR_BIT*sizeof(mp_word))
  /external/clang/test/SemaCXX/
shift.cpp 5 #define WORD_BIT (sizeof(int) * CHAR_BIT)
  /external/clang/test/Sema/
shift.c 5 #define WORD_BIT (sizeof(int) * CHAR_BIT)
32 c <<= CHAR_BIT; // expected-warning {{shift count >= width of type}}
33 c >>= CHAR_BIT; // expected-warning {{shift count >= width of type}}
34 c <<= CHAR_BIT+1; // expected-warning {{shift count >= width of type}}
35 c >>= CHAR_BIT+1; // expected-warning {{shift count >= width of type}}
36 (void)((long)c << CHAR_BIT);
52 lli = 1LL << (sizeof(long long) * CHAR_BIT - 2);
  /frameworks/compile/libbcc/runtime/lib/
absvdi2.c 25 const int N = (int)(sizeof(di_int) * CHAR_BIT);
absvsi2.c 25 const int N = (int)(sizeof(si_int) * CHAR_BIT);
negvdi2.c 25 const di_int MIN = (di_int)1 << ((int)(sizeof(di_int) * CHAR_BIT)-1);
negvsi2.c 25 const si_int MIN = (si_int)1 << ((int)(sizeof(si_int) * CHAR_BIT)-1);
negvti2.c 27 const ti_int MIN = (ti_int)1 << ((int)(sizeof(ti_int) * CHAR_BIT)-1);
absvti2.c 27 const int N = (int)(sizeof(ti_int) * CHAR_BIT);
clzdi2.c 28 (f & ((si_int)(sizeof(si_int) * CHAR_BIT)));
clzti2.c 30 ((si_int)f & ((si_int)(sizeof(di_int) * CHAR_BIT)));
ctzdi2.c 28 (f & ((si_int)(sizeof(si_int) * CHAR_BIT)));
ctzti2.c 30 ((si_int)f & ((si_int)(sizeof(di_int) * CHAR_BIT)));
ffsdi2.c 30 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
ffsti2.c 32 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
floatundixf.c 33 const unsigned N = sizeof(du_int) * CHAR_BIT;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
hwint.h 13 #define HOST_BITS_PER_CHAR CHAR_BIT
14 #define HOST_BITS_PER_SHORT (CHAR_BIT * SIZEOF_SHORT)
15 #define HOST_BITS_PER_INT (CHAR_BIT * SIZEOF_INT)
16 #define HOST_BITS_PER_LONG (CHAR_BIT * SIZEOF_LONG)
39 # define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF_LONG_LONG)
42 # define HOST_BITS_PER___INT64 (CHAR_BIT * SIZEOF___INT64)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
hwint.h 13 #define HOST_BITS_PER_CHAR CHAR_BIT
14 #define HOST_BITS_PER_SHORT (CHAR_BIT * SIZEOF_SHORT)
15 #define HOST_BITS_PER_INT (CHAR_BIT * SIZEOF_INT)
16 #define HOST_BITS_PER_LONG (CHAR_BIT * SIZEOF_LONG)
39 # define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF_LONG_LONG)
42 # define HOST_BITS_PER___INT64 (CHAR_BIT * SIZEOF___INT64)
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
hwint.h 13 #define HOST_BITS_PER_CHAR CHAR_BIT
14 #define HOST_BITS_PER_SHORT (CHAR_BIT * SIZEOF_SHORT)
15 #define HOST_BITS_PER_INT (CHAR_BIT * SIZEOF_INT)
16 #define HOST_BITS_PER_LONG (CHAR_BIT * SIZEOF_LONG)
39 # define HOST_BITS_PER_LONGLONG (CHAR_BIT * SIZEOF_LONG_LONG)
42 # define HOST_BITS_PER___INT64 (CHAR_BIT * SIZEOF___INT64)
  /ndk/sources/host-tools/sed-4.2.1/lib/
intprops.h 49 : ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1)))
53 : ~ (~ (t) 0 << (sizeof (t) * CHAR_BIT - 1))))
72 ((sizeof (t) * CHAR_BIT - signed_type_or_expr__ (t)) * 146 / 485 \
  /external/bison/lib/
strerror.c 40 static char mesg[sizeof fmt + sizeof n * CHAR_BIT / 3];
  /external/dropbear/libtommath/
bn_mp_get_int.c 29 i = MIN(a->used,(int)((sizeof(unsigned long)*CHAR_BIT+DIGIT_BIT-1)/DIGIT_BIT))-1;
  /frameworks/compile/libbcc/runtime/test/Unit/
fixdfdi_test.c 36 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
37 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
fixsfdi_test.c 36 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
37 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
fixunsdfsi_test.c 37 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
38 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011