Searched defs:CHAR_BIT (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/Sema/
H A Dshift.c5 #define WORD_BIT (sizeof(int) * CHAR_BIT)
32 c <<= CHAR_BIT; // expected-warning {{shift count >= width of type}} local
33 c >>= CHAR_BIT; // expected-warning {{shift count >= width of type}} local
34 c <<= CHAR_BIT+1; // expected-warning {{shift count >= width of type}} local
35 c >>= CHAR_BIT+1; // expected-warning {{shift count >= width of type}} local
36 (void)((long)c << CHAR_BIT);
53 lli = 1LL << (sizeof(long long) * CHAR_BIT - 2);
/external/syslinux/com32/include/
H A Dlimits.h8 #define CHAR_BIT 8 macro
/external/syslinux/gpxe/src/arch/i386/include/
H A Dlimits.h7 #define CHAR_BIT 8 macro
/external/syslinux/gpxe/src/arch/x86_64/include/
H A Dlimits.h5 #define CHAR_BIT 8 macro
/external/clang/lib/Headers/
H A Dlimits.h55 #undef CHAR_BIT macro
79 #define CHAR_BIT __CHAR_BIT__ macro
H A Dopencl-c.h259 #define CHAR_BIT 8 macro
/external/e2fsprogs/e2fsck/
H A Dmtrace.h96 #define CHAR_BIT 8 macro
104 #define INT_BIT (CHAR_BIT * sizeof(int))
/external/libchrome/base/numerics/
H A Dsafe_math_impl.h93 CHAR_BIT * sizeof(Integer) - 1;
397 RangeConstraint validity_ : CHAR_BIT; // Actually requires only two bits. member in class:base::internal::CheckedNumericState
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c17 #ifndef CHAR_BIT
18 #define CHAR_BIT 8 macro
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)))) {
2132 (1 << (sizeof(mp_word) * CHAR_BIT - 2*DIGIT_BIT - 1))) {
2353 (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
2604 && MIN (a->used, b->used) < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
3027 P->used < (1 << ((CHAR_BIT * sizeo
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c17 #ifndef CHAR_BIT
18 #define CHAR_BIT 8 macro
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)))) {
2132 (1 << (sizeof(mp_word) * CHAR_BIT - 2*DIGIT_BIT - 1))) {
2353 (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
2604 && MIN (a->used, b->used) < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
3027 P->used < (1 << ((CHAR_BIT * sizeo
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c17 #ifndef CHAR_BIT
18 #define CHAR_BIT 8 macro
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)))) {
2132 (1 << (sizeof(mp_word) * CHAR_BIT - 2*DIGIT_BIT - 1))) {
2353 (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
2604 && MIN (a->used, b->used) < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
3027 P->used < (1 << ((CHAR_BIT * sizeo
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dminilzo-inl.c3329 m_len += lzo_bitops_clz64(v) / CHAR_BIT;
3331 if ((v >> (64 - CHAR_BIT)) == 0) do {
3332 v <<= CHAR_BIT; local
3334 } while ((v >> (64 - CHAR_BIT)) == 0);
3336 m_len += lzo_bitops_ctz64(v) / CHAR_BIT;
3339 v >>= CHAR_BIT; local
3359 m_len += lzo_bitops_clz32(v) / CHAR_BIT;
3361 if ((v >> (32 - CHAR_BIT)) == 0) do {
3362 v <<= CHAR_BIT; local
3364 } while ((v >> (32 - CHAR_BIT))
3369 v >>= CHAR_BIT; local
[all...]
/external/libvncserver/common/
H A Dminilzo.c4738 m_len += lzo_bitops_ctlz64(v) / CHAR_BIT;
4740 if ((v >> (64 - CHAR_BIT)) == 0) do {
4741 v <<= CHAR_BIT; local
4743 } while ((v >> (64 - CHAR_BIT)) == 0);
4745 m_len += lzo_bitops_cttz64(v) / CHAR_BIT;
4748 v >>= CHAR_BIT; local
4772 m_len += lzo_bitops_ctlz32(v) / CHAR_BIT;
4774 if ((v >> (32 - CHAR_BIT)) == 0) do {
4775 v <<= CHAR_BIT; local
4777 } while ((v >> (32 - CHAR_BIT))
4782 v >>= CHAR_BIT; local
[all...]
/external/syslinux/lzo/src/
H A Dminiacc.h96 #undef CHAR_BIT macro
97 #define CHAR_BIT 8 macro

Completed in 569 milliseconds