Lines Matching refs:bytesToAllocate
7731 const int bytesToAllocate in poolBytesToAllocateFor() local
7733 if (bytesToAllocate < 0) in poolBytesToAllocateFor()
7736 return (size_t)bytesToAllocate; in poolBytesToAllocateFor()
7768 size_t bytesToAllocate; in poolGrow() local
7784 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7785 if (bytesToAllocate == 0) in poolGrow()
7789 (unsigned)bytesToAllocate); in poolGrow()
7800 size_t bytesToAllocate; in poolGrow() local
7825 bytesToAllocate = poolBytesToAllocateFor(blockSize); in poolGrow()
7826 if (bytesToAllocate == 0) in poolGrow()
7829 tem = pool->mem->malloc_fcn(bytesToAllocate); in poolGrow()