Home
last modified time | relevance | path

Searched refs:kWordSize (Results 1 – 6 of 6) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_malloc_linux.cc50 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR()
Dasan_malloc_mac.cc182 size_t size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in __asan_mz_calloc()
/external/compiler-rt/lib/lsan/
Dlsan_interceptors.cc68 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common.h31 const uptr kWordSize = SANITIZER_WORDSIZE / 8; variable
32 const uptr kWordSizeInBits = 8 * kWordSize;
/external/v8/src/arm64/
Dconstants-arm64.h102 const unsigned kWordSize = 32; variable
104 const unsigned kWordSizeInBytes = kWordSize >> 3;
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc981 SIZE_T size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR()