Searched defs:__WORDSIZE (Results 1 - 4 of 4) sorted by relevance

/external/compiler-rt/lib/asan/tests/
H A Dasan_test_utils.h35 #ifndef __WORDSIZE
37 #define __WORDSIZE 64 macro
39 #define __WORDSIZE 32 macro
/external/linux-tools-perf/util/include/linux/
H A Dbitops.h14 #define __WORDSIZE 32 macro
19 #define BITS_PER_LONG __WORDSIZE
/external/valgrind/tsan/
H A Dts_util.h72 // __WORDSIZE is GLibC-specific. Get it from Valgrind if needed.
73 #if !defined(__WORDSIZE)
75 #define __WORDSIZE 32 macro
77 #define __WORDSIZE 64 macro
79 #endif // TS_VALGRIND && !__WORDSIZE
389 #if defined(VGP_arm_linux) && __WORDSIZE == 64
391 #elif defined(VGP_arm_linux) && __WORDSIZE == 32
393 #elif defined(__GNUC__) && __WORDSIZE == 64
396 #elif defined(__GNUC__) && __WORDSIZE == 32
/external/compiler-rt/lib/asan/
H A Dasan_internal.h45 # include <stdint.h> // for __WORDSIZE
55 // If __WORDSIZE was undefined by the platform, define it in terms of the
57 #ifndef __WORDSIZE
59 #define __WORDSIZE 64 macro
61 #define __WORDSIZE 32 macro
67 #if __WORDSIZE == 64
73 #endif // __WORDSIZE == 64
287 const size_t kWordSize = __WORDSIZE / 8;

Completed in 72 milliseconds