Searched refs:WORD_BIT (Results 1 – 20 of 20) sorted by relevance
/external/clang/test/Sema/ |
D | shift.c | 5 #define WORD_BIT (sizeof(int) * CHAR_BIT) macro 39 i = 1 << (WORD_BIT - 2); in test() 40 i = 2 << (WORD_BIT - 1); // expected-warning {{bits to represent, but 'int' only has}} in test() 41 i = 1 << (WORD_BIT - 1); // expected-warning {{sets the sign bit of the shift expression}} in test() 42 i = -1 << (WORD_BIT - 1); // expected-warning {{shifting a negative signed value is undefined}} in test() 44 i = 0 << (WORD_BIT - 1); in test() 45 i = (char)1 << (WORD_BIT - 2); in test() 48 u = 1U << (WORD_BIT - 1); in test() 49 u = 5U << (WORD_BIT - 1); in test()
|
/external/llvm-project/clang/test/Sema/ |
D | shift.c | 5 #define WORD_BIT (sizeof(int) * CHAR_BIT) macro 42 i = 1 << (WORD_BIT - 2); in test() 43 i = 2 << (WORD_BIT - 1); // expected-warning {{bits to represent, but 'int' only has}} in test() 44 i = 1 << (WORD_BIT - 1); // expected-warning {{sets the sign bit of the shift expression}} in test() 45 i = -1 << (WORD_BIT - 1); // expected-warning {{shifting a negative signed value is undefined}} in test() 47 i = 0 << (WORD_BIT - 1); in test() 48 i = (char)1 << (WORD_BIT - 2); in test() 51 u = 1U << (WORD_BIT - 1); in test() 52 u = 5U << (WORD_BIT - 1); in test()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | shift.cpp | 6 #define WORD_BIT (sizeof(int) * CHAR_BIT) macro 43 i = 1 << (WORD_BIT - 2); in test() 44 i = 2 << (WORD_BIT - 1); // expected-warning {{bits to represent, but 'int' only has}} in test() 45 i = 1 << (WORD_BIT - 1); // expected-warning {{sets the sign bit of the shift expression}} in test() 46 i = -1 << (WORD_BIT - 1); // cxx17-warning {{shifting a negative signed value is undefined}} in test() 48 i = 0 << (WORD_BIT - 1); in test() 49 i = (char)1 << (WORD_BIT - 2); in test() 52 u = 1U << (WORD_BIT - 1); in test() 53 u = 5U << (WORD_BIT - 1); in test()
|
/external/python/cpython2/Lib/plat-linux2/ |
D | IN.py | 345 WORD_BIT = 16 variable 346 WORD_BIT = 32 variable 347 WORD_BIT = 64 variable 348 WORD_BIT = 16 variable 349 WORD_BIT = 32 variable 350 WORD_BIT = 64 variable 351 WORD_BIT = 32 variable
|
/external/clang/test/SemaCXX/ |
D | shift.cpp | 5 #define WORD_BIT (sizeof(int) * CHAR_BIT) macro
|
/external/python/cpython2/PC/os2vacpp/ |
D | pyconfig.h | 74 #define WORD_BIT 32 /* OS/2 is a 32-Bit Operating System */ macro
|
/external/python/cpython3/PC/ |
D | pyconfig.h | 66 #define WORD_BIT 32 macro
|
/external/python/cpython2/PC/ |
D | pyconfig.h | 76 #define WORD_BIT 32 macro
|
/external/libjpeg-turbo/simd/i386/ |
D | jcgryext-mmx.asm | 111 shl eax, WORD_BIT
|
D | jdcolext-mmx.asm | 290 shr eax, WORD_BIT
|
D | jcgryext-sse2.asm | 108 shl eax, WORD_BIT
|
D | jccolext-mmx.asm | 119 shl eax, WORD_BIT
|
D | jccolext-sse2.asm | 116 shl eax, WORD_BIT
|
D | jcgryext-avx2.asm | 109 shl eax, WORD_BIT
|
D | jccolext-avx2.asm | 117 shl eax, WORD_BIT
|
/external/libjpeg-turbo/simd/x86_64/ |
D | jcgryext-sse2.asm | 95 shl rax, WORD_BIT
|
D | jccolext-sse2.asm | 103 shl rax, WORD_BIT
|
D | jcgryext-avx2.asm | 96 shl rax, WORD_BIT
|
D | jccolext-avx2.asm | 104 shl rax, WORD_BIT
|
/external/libjpeg-turbo/simd/nasm/ |
D | jsimdext.inc | 217 %define WORD_BIT 16 ; sizeof(word)*BYTE_BIT
|