Home | History | Annotate | Download | only in alloc

Lines Matching full:block_size

156 enum { BLOCK_SIZE = 1 << BLOCK_SHIFT };
325 void *addr = &heapSource->blockBase[i*BLOCK_SIZE];
326 memset(addr, 0, blocks*BLOCK_SIZE);
361 addr = (u1 *) (((uintptr_t) heapSource->baseBlock + block) * BLOCK_SIZE);
370 u1 *addr = heapSource->blockBase + block*BLOCK_SIZE;
371 memset(addr, 0xCC, BLOCK_SIZE);
372 for (size_t i = 0; i < BLOCK_SIZE; i += 8) {
399 LOG_SCAV("freed %zu blocks (%zu bytes)", count, count*BLOCK_SIZE);
450 heapSource->minimumSize = alignUp(startSize, BLOCK_SIZE);
451 heapSource->maximumSize = alignUp(absoluteMaxSize, BLOCK_SIZE);
464 assert(heapSource->totalBlocks = heapSource->maximumSize / BLOCK_SIZE);
488 heapSource->allocLimit = heapSource->allocPtr + BLOCK_SIZE;
607 if (aligned <= BLOCK_SIZE) {
610 heapSource->allocLimit = addr + BLOCK_SIZE;
620 blocks = alignUp(aligned, BLOCK_SIZE) / BLOCK_SIZE;
788 *total = heapSource->totalBlocks*BLOCK_SIZE;
789 *alloc = heapSource->allocBlocks*BLOCK_SIZE;
1894 end = cursor + BLOCK_SIZE;
1951 end = cursor + BLOCK_SIZE;
2098 gDvm.gcHeap->heapSource->allocLimit = gDvm.gcHeap->heapSource->allocPtr + BLOCK_SIZE;