HomeSort by relevance Sort by last modified time
    Searched defs:CHAR_BIT (Results 1 - 6 of 6) sorted by null

  /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);
  /external/clang/lib/Headers/
limits.h 55 #undef CHAR_BIT
79 #define CHAR_BIT __CHAR_BIT__
  /external/e2fsprogs/e2fsck/
mtrace.h 96 #define CHAR_BIT 8
104 #define INT_BIT (CHAR_BIT * sizeof(int))
  /development/ndk/platforms/android-3/include/sys/
limits.h 49 #define CHAR_BIT 8 /* number of bits in a char */
  /bionic/libc/include/sys/
limits.h 34 #define CHAR_BIT 8 /* number of bits in a char */
  /development/ndk/platforms/android-L/include/sys/
limits.h 34 #define CHAR_BIT 8 /* number of bits in a char */

Completed in 330 milliseconds