Lines Matching refs:bytesToAllocate
7456 const int bytesToAllocate in poolBytesToAllocateFor() local
7458 if (bytesToAllocate < 0) in poolBytesToAllocateFor()
7461 return (size_t)bytesToAllocate; in poolBytesToAllocateFor()
7493 size_t bytesToAllocate; in poolGrow() local
7509 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7510 if (bytesToAllocate == 0) in poolGrow()
7514 (unsigned)bytesToAllocate); in poolGrow()
7525 size_t bytesToAllocate; in poolGrow() local
7550 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7551 if (bytesToAllocate == 0) in poolGrow()
7554 tem = pool->mem->malloc_fcn(bytesToAllocate); in poolGrow()