Searched defs:CHAR_BIT (Results 1 - 7 of 7) 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);
52 lli = 1LL << (sizeof(long long) * CHAR_BIT - 2);
/external/clang/lib/Headers/
H A Dlimits.h55 #undef CHAR_BIT macro
79 #define CHAR_BIT __CHAR_BIT__ macro
/external/e2fsprogs/e2fsck/
H A Dmtrace.h96 #define CHAR_BIT 8 macro
104 #define INT_BIT (CHAR_BIT * sizeof(int))
/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...]

Completed in 255 milliseconds