Searched refs:size_in_words (Results 1 – 7 of 7) sorted by relevance
39 uptr size_in_words = RoundUpTo(size_in_bytes, kWordSize) / kWordSize; in AllocateFromLocalPool() local41 allocated_for_dlsym += size_in_words; in AllocateFromLocalPool()
70 uptr size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local72 allocated += size_in_words; in INTERCEPTOR()
169 size_t size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize;171 allocated += size_in_words;
784 int size_in_words = bytes_to_output >> kPointerSizeLog2; in OutputRawData() local785 sink_->PutSection(kFixedRawDataStart + size_in_words, "FixedRawData"); in OutputRawData()
685 Node* size_in_words = WordShr(object_size, kPointerSizeLog2); in EmitFastCloneShallowObject() local686 GotoIfNot(WordEqual(instance_size, size_in_words), call_runtime); in EmitFastCloneShallowObject()
915 SIZE_T size_in_words = ((nmemb * size) + kWordSize - 1) / kWordSize; in INTERCEPTOR() local917 allocated += size_in_words; in INTERCEPTOR()
2480 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; in getBitmapBlockLayout() local2481 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()