Lines Matching refs:allocate
103 void *allocate(MemoryPool *memPool, size_t size);
345 friend void *BootStrapBlocks::allocate(MemoryPool *, size_t);
361 inline FreeObject* allocate();
618 TLSData* tls = (TLSData*) memPool->bootStrapBlocks.allocate(memPool, sizeof(TLSData)); in createTLS()
874 void *BootStrapBlocks::allocate(MemoryPool *memPool, size_t size) in allocate() function in rml::internal::BootStrapBlocks
1842 static FreeObject *allocate(size_t size);
1868 FreeObject *StartupBlock::allocate(size_t size) in allocate() function in rml::internal::StartupBlock
2137 inline FreeObject* Block::allocate() in allocate() function in rml::internal::Block
2579 if( FreeObject *result = mallocBlock->allocate() ) in internalPoolMalloc()
2603 if( FreeObject *result = mallocBlock->allocate() ) in internalPoolMalloc()
2615 if( FreeObject *result = mallocBlock->allocate() ) in internalPoolMalloc()
2655 return size<minLargeObjectSize? StartupBlock::allocate(size) : in internalMalloc()