Lines Matching refs:pool_malloc
428 void *ptr = pool_malloc(my_mallocPool, sz); in operator ()()
470 void *p = pool_malloc(mallocPool, passBackendSz); in TestPools()
477 void *p = pool_malloc(mallocPool, anotherLOCBinSz); in TestPools()
482 void *smallObj = pool_malloc(fixedPool, 10); in TestPools()
485 void *ptr = pool_malloc(fixedPool, 1024); in TestPools()
488 void *largeObj = pool_malloc(fixedPool, minLargeObjectSize); in TestPools()
491 ptr = pool_malloc(fixedPool, minLargeObjectSize); in TestPools()
494 pool_malloc(fixedPool, 10*minLargeObjectSize); // no leak for unsuccessful allocations in TestPools()
514 p[3] = pool_malloc(mallocPool, minLargeObjectSize+2*LargeCacheStep); in TestPools()
516 p[0] = pool_malloc(mallocPool, minLargeObjectSize); in TestPools()
517 p[1] = pool_malloc(mallocPool, minLargeObjectSize+LargeCacheStep); in TestPools()
527 p[i] = pool_malloc(mallocPool, minLargeObjectSize+i*LargeCacheStep); in TestPools()
530 p[4] = pool_malloc(mallocPool, minLargeObjectSize+3*LargeCacheStep); in TestPools()
547 void *o = pool_malloc(mallocPool, minLargeObjectSize+i*LargeCacheStep); in TestPools()
551 o = pool_malloc(mallocPool, minLargeObjectSize+i*LargeCacheStep); in TestPools()