Home
last modified time | relevance | path

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

/external/compiler-rt/lib/asan/
Dasan_malloc_linux.cc50 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local
52 allocated += size_in_words; in INTERCEPTOR()
Dasan_malloc_mac.cc182 size_t size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in __asan_mz_calloc() local
184 allocated += size_in_words; in __asan_mz_calloc()
/external/compiler-rt/lib/lsan/
Dlsan_interceptors.cc68 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local
70 allocated += size_in_words; in INTERCEPTOR()
/external/v8/src/heap/
Dheap-inl.h478 int size_in_words = byte_size / kPointerSize; in MoveBlock() local
483 Object** end_slot = src_slot + size_in_words; in MoveBlock()
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc981 SIZE_T size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local
983 allocated += size_in_words; in INTERCEPTOR()
/external/v8/src/
Dcode-stubs-hydrogen.cc430 HValue* size_in_words = Add<HConstant>(object_size >> kPointerSizeLog2); in BuildCodeStub() local
432 size_in_words, Token::EQ); in BuildCodeStub()
/external/clang/lib/CodeGen/
DCGObjCMac.cpp2343 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout() local
2344 while (size_in_words >= 16) { in getBitmapBlockLayout()
2349 size_in_words -= 16; in getBitmapBlockLayout()
2351 if (size_in_words > 0) { in getBitmapBlockLayout()
2354 unsigned char inst = (opcode << 4) | (size_in_words-1); in getBitmapBlockLayout()