Lines Matching refs:bytes
173 nsRecyclingAllocator::Malloc(PRSize bytes, PRBool zeroit)
179 Block* freeBlock = FindFreeBlock(bytes);
185 memset(data, 0, bytes);
190 // Add 4 bytes to what we allocate to hold the bucket index
191 PRSize allocBytes = bytes + NS_ALLOCATOR_OVERHEAD_BYTES;
226 ptr->bytes = bytes;
248 mId, (char *)ptr, block->bytes, mNAllocated, mMaxBlocks);
285 printf("%d ", node->bytes);
289 node->bytes = 0;
309 nsRecyclingAllocator::FindFreeBlock(PRSize bytes)
338 if (freeNode->bytes >= bytes)
345 freeNode->bytes = 0;
376 node->bytes = block->bytes;
384 if (freeNode->bytes >= block->bytes)