Searched refs:Allocate (Results 1 - 25 of 44) sorted by path

12

/haiku/headers/private/kernel/util/
H A DAVLTreeMap.h27 inline Node* Allocate(const Key& key, const Value& value)
475 return fStrategy.Allocate(key, value);
612 inline Node* Allocate(const Key& key, const Value& value) function in class:AVLTreeMapStrategy::Auto
614 Node* result = fAllocator.Allocate();
H A DMallocFreeAllocator.h19 Pointer Allocate() { function in class:MallocFreeAllocator
H A DOpenHashTable.h62 void* Allocate(size_t size) const function in struct:MallocAllocator
437 = (ValueType**)fAllocator.Allocate(sizeof(ValueType*) * newSize);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DVolume.h113 status_t Allocate(Transaction& transaction, Inode* inode,
220 Volume::Allocate(Transaction& transaction, Inode* inode, off_t numBlocks, function in class:Volume
223 return fBlockAllocator.Allocate(transaction, inode, numBlocks, run,
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBlockAllocator.h33 status_t Allocate(Transaction& transaction, Inode* inode,
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DTwoKeyAVLTree.h150 inline Node* Allocate(const Key& key, const Value& value) const function in class:TwoKeyAVLTreeNodeStrategy
/haiku/src/add-ons/translators/ico/
H A DICO.cpp37 void *Allocate(size_t size) { return fMemory = malloc(size); } function in class:TempAllocator
288 uint8 *xorData = (uint8 *)xorAllocator.Allocate(xorDataSize);
295 andData = (uint8 *)andAllocator.Allocate(andDataSize);
300 rgba32_color *outRowData = (rgba32_color *)rowAllocator.Allocate(outRowBytes);
395 uint8 *xorRowData = (uint8 *)xorAllocator.Allocate(xorRowBytes);
399 uint8 *andRowData = (uint8 *)andAllocator.Allocate(andRowBytes);
694 uint8 *bitsData = (uint8 *)dataAllocator.Allocate(bitsHeader.rowBytes * height);
/haiku/src/add-ons/translators/pcx/
H A DPCX.cpp36 void *Allocate(size_t size) { return fMemory = malloc(size); } function in class:TempAllocator
89 uint8 *palette = (uint8 *)paletteAllocator.Allocate(3 * 256);
94 scanLineData[row] = (uint8 *)scanLineAllocator.Allocate(scanLineLength);
/haiku/src/servers/print/
H A DPrintServerApp.cpp203 Resource* resource = fResourceManager.Allocate(transport.String(),
H A DResourceManager.cpp86 ResourceManager::Allocate(const char* transport, const char* address, const char* connection) { function in class:ResourceManager
H A DResourceManager.h48 Resource* Allocate(const char* transport, const char* address, const char* connection);
/haiku/src/system/kernel/debug/
H A Ddebug_heap.cpp62 = (DebugAllocPool*)Allocate(sizeof(DebugAllocPool));
94 void* Allocate(size_t size) function in struct:DebugAllocPool
277 return sCurrentPool->Allocate(size);
/haiku/src/system/kernel/slab/
H A DHashedObjectCache.cpp116 if (MemoryManager::Allocate(this, flags, pages) == B_OK
H A DHashedObjectCache.h82 void* Allocate(size_t size) const function in struct:HashedObjectCache::InternalAllocator
H A DMemoryManager.h47 static status_t Allocate(ObjectCache* cache, uint32 flags,
H A DSmallObjectCache.cpp76 status_t error = MemoryManager::Allocate(this, flags, pages);
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DBlockAllocator.cpp164 BlockAllocator::Allocate(uint64 baseHint, uint64 count, function in class:BlockAllocator
169 PRINT("BlockAllocator::Allocate(%" B_PRIu64 ", %" B_PRIu64 ")\n", baseHint,
431 // Allocate as many of the requested blocks as we can.
551 // Allocate as many of the requested blocks as we can, starting at the base
H A DBlockAllocator.h28 status_t Allocate(uint64 baseHint, uint64 count,
96 status_t Allocate(uint64 baseHint = 0) function in class:AllocatedBlock
99 status_t error = fAllocator->Allocate(0, 1, fTransaction, fIndex,
H A DDirectory.cpp1362 status_t error = allocatedBlock.Allocate(fDirectory->BlockIndex());
1415 status_t error = allocatedBlock.Allocate(fDirectory->BlockIndex());
H A DFile.cpp628 status_t error = allocatedBlock.Allocate(BlockIndex());
679 status_t error = allocatedBlock.Allocate(BlockIndex());
H A DVolume.cpp493 status_t error = allocatedBlock.Allocate();
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h62 void* Allocate(size_t size) const function in struct:MallocAllocator
437 = (ValueType**)fAllocator.Allocate(sizeof(ValueType*) * newSize);
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DPhysicalMemoryAllocator.cpp118 PhysicalMemoryAllocator::Allocate(size_t size, void **logicalAddress, function in class:PhysicalMemoryAllocator
H A DPhysicalMemoryAllocator.h27 status_t Allocate(size_t size,
H A DStack.cpp281 return fAllocator->Allocate(size, logicalAddress, physicalAddress);

Completed in 190 milliseconds

12