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

1 23 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/
floatuntisf.c 34 const unsigned N = sizeof(tu_int) * CHAR_BIT;
lshrdi3.c 26 const int bits_in_word = (int)(sizeof(si_int) * CHAR_BIT);
lshrti3.c 26 const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT);
moddi3.c 24 const int bits_in_dword_m1 = (int)(sizeof(di_int) * CHAR_BIT) - 1;
modti3.c 26 const int bits_in_tword_m1 = (int)(sizeof(ti_int) * CHAR_BIT) - 1;
  /external/compiler-rt/test/Unit/
paritydi2_test.c 41 char assumption_2[sizeof(si_int)*CHAR_BIT == 32] = {0};
paritysi2_test.c 40 char assumption_2[sizeof(si_int)*CHAR_BIT == 32] = {0};
fixdfti_test.c 45 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
46 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
fixunsdfdi_test.c 38 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
39 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
fixunsdfti_test.c 47 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
48 char assumption_3[sizeof(double)*CHAR_BIT == 64] = {0};
fixunssfdi_test.c 39 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
40 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
fixunssfsi_test.c 37 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
38 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
fixunstfdi_test.c 39 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0};
40 char assumption_3[sizeof(long double)*CHAR_BIT == 128] = {0};
fixunsxfdi_test.c 43 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0};
44 char assumption_3[sizeof(long double)*CHAR_BIT == 128] = {0};
fixxfdi_test.c 40 char assumption_2[sizeof(su_int)*CHAR_BIT == 32] = {0};
41 char assumption_3[sizeof(long double)*CHAR_BIT == 128] = {0};
floatdisf_test.c 37 char assumption_2[sizeof(di_int)*CHAR_BIT == 64] = {0};
38 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
floatundisf_test.c 37 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0};
38 char assumption_3[sizeof(float)*CHAR_BIT == 32] = {0};
  /external/dropbear/libtommath/
bn_mp_sqr.c 41 (1 << (sizeof(mp_word) * CHAR_BIT - 2*DIGIT_BIT - 1))) {
bn_mp_sub_d.c 70 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
76 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
bn_s_mp_sub.c 57 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
69 u = *tmpc >> ((mp_digit)(CHAR_BIT * sizeof (mp_digit) - 1));
  /external/skia/src/sfnt/
SkOTTableTypes.h 16 #if CHAR_BIT == 8
  /system/extras/tests/bionic/libstdc++/
test_climits.cpp 47 volatile char c1 = CHAR_BIT;
  /external/clang/lib/Headers/
limits.h 56 #undef CHAR_BIT
80 #define CHAR_BIT __CHAR_BIT__
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 94 Alignment |= 1U << (sizeof(unsigned)*CHAR_BIT-1);
105 return Alignment & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
  /external/stlport/stlport/stl/
_bitset.c 26 #define __BITS_PER_WORD (CHAR_BIT * sizeof(unsigned long))
97 return __i*__BITS_PER_WORD + __j*CHAR_BIT +
100 __thisword >>= CHAR_BIT;
129 __thisword >>= _S_whichbyte(__prev) * CHAR_BIT;
134 return __i*__BITS_PER_WORD + __j*CHAR_BIT +
137 __thisword >>= CHAR_BIT;
151 return __i*__BITS_PER_WORD + __j*CHAR_BIT +
154 __thisword >>= CHAR_BIT;

Completed in 513 milliseconds

1 23 4 5 6 7 8 91011>>