Home
last modified time | relevance | path

Searched refs:size_in_words (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/compiler-rt/lib/memprof/
Dmemprof_malloc_linux.cpp43 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize; in AllocateFromLocalPool() local
45 last_dlsym_alloc_size_in_words = size_in_words; in AllocateFromLocalPool()
46 allocated_for_dlsym += size_in_words; in AllocateFromLocalPool()
/external/llvm-project/compiler-rt/lib/asan/
Dasan_malloc_linux.cpp43 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize; in AllocateFromLocalPool() local
45 last_dlsym_alloc_size_in_words = size_in_words; in AllocateFromLocalPool()
46 allocated_for_dlsym += size_in_words; in AllocateFromLocalPool()
/external/compiler-rt/lib/asan/
Dasan_malloc_linux.cc39 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize; in AllocateFromLocalPool() local
41 allocated_for_dlsym += size_in_words; in AllocateFromLocalPool()
/external/compiler-rt/lib/lsan/
Dlsan_interceptors.cc70 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local
72 allocated += size_in_words; in INTERCEPTOR()
/external/llvm-project/compiler-rt/lib/hwasan/
Dhwasan_interceptors.cpp57 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize; in AllocateFromLocalPool() local
59 allocated_for_dlsym += size_in_words; in AllocateFromLocalPool()
/external/llvm-project/compiler-rt/lib/lsan/
Dlsan_interceptors.cpp74 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local
76 allocated += size_in_words; in INTERCEPTOR()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_malloc_mac.inc169 size_t size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;
171 allocated += size_in_words;
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_malloc_mac.inc207 size_t size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;
209 allocated += size_in_words;
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc915 SIZE_T size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local
917 allocated += size_in_words; in INTERCEPTOR()
/external/llvm-project/compiler-rt/lib/msan/
Dmsan_interceptors.cpp86 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize; in AllocateFromLocalPool() local
88 allocated_for_dlsym += size_in_words; in AllocateFromLocalPool()
/external/clang/lib/CodeGen/
DCGObjCMac.cpp2480 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout() local
2481 while (size_in_words >= 16) { in getBitmapBlockLayout()
2486 size_in_words -= 16; in getBitmapBlockLayout()
2488 if (size_in_words > 0) { in getBitmapBlockLayout()
2491 unsigned char inst = (opcode << 4) | (size_in_words-1); in getBitmapBlockLayout()
/external/llvm-project/clang/lib/CodeGen/
DCGObjCMac.cpp2779 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout() local
2780 while (size_in_words >= 16) { in getBitmapBlockLayout()
2785 size_in_words -= 16; in getBitmapBlockLayout()
2787 if (size_in_words > 0) { in getBitmapBlockLayout()
2790 unsigned char inst = (opcode << 4) | (size_in_words-1); in getBitmapBlockLayout()