Searched refs:Allocation (Results 1 - 5 of 5) sorted by relevance

/freebsd-9.3-release/sys/contrib/dev/acpica/utilities/
H A Duttrack.c69 void *Allocation);
149 ACPI_DEBUG_MEM_BLOCK *Allocation; local
153 Allocation = AcpiUtAllocate (Size + sizeof (ACPI_DEBUG_MEM_HEADER),
155 if (!Allocation)
160 Status = AcpiUtTrackAllocation (Allocation, Size,
164 AcpiOsFree (Allocation);
176 return ((void *) &Allocation->UserSpace);
202 ACPI_DEBUG_MEM_BLOCK *Allocation; local
206 Allocation = AcpiUtAllocateZeroed (Size + sizeof (ACPI_DEBUG_MEM_HEADER),
208 if (!Allocation)
253 AcpiUtFreeAndTrack( void *Allocation, UINT32 Component, const char *Module, UINT32 Line) argument
306 AcpiUtFindAllocation( void *Allocation) argument
351 AcpiUtTrackAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation, ACPI_SIZE Size, UINT8 AllocType, UINT32 Component, const char *Module, UINT32 Line) argument
441 AcpiUtRemoveAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation, UINT32 Component, const char *Module, UINT32 Line) argument
[all...]
H A Dutalloc.c348 void *Allocation; local
363 Allocation = AcpiOsAllocate (Size);
364 if (!Allocation)
374 return_PTR (Allocation);
400 void *Allocation; local
406 Allocation = AcpiUtAllocate (Size, Component, Module, Line);
407 if (Allocation)
411 ACPI_MEMSET (Allocation, 0, Size);
414 return (Allocation);
/freebsd-9.3-release/contrib/llvm/tools/lli/
H A DRemoteMemoryManager.h32 struct Allocation { struct in class:llvm::RemoteMemoryManager
33 Allocation() {} function in struct:llvm::RemoteMemoryManager::Allocation
34 Allocation(sys::MemoryBlock mb, unsigned a, bool code) function in struct:llvm::RemoteMemoryManager::Allocation
43 // This vector contains Allocation objects for all sections which we have
46 SmallVector<Allocation, 2> AllocatedSections;
48 // This vector contains pointers to Allocation objects for any sections we
52 SmallVector<Allocation, 2> UnmappedSections;
56 DenseMap<uint64_t, Allocation> MappedSections;
H A DRemoteMemoryManager.cpp25 for (SmallVector<Allocation, 2>::iterator
40 AllocatedSections.push_back( Allocation(Block, Alignment, true) );
42 UnmappedSections.push_back( Allocation(Block, Alignment, true) );
56 AllocatedSections.push_back( Allocation(Block, Alignment, false) );
58 UnmappedSections.push_back( Allocation(Block, Alignment, false) );
93 SmallVector<std::pair<Allocation, uint64_t>, 16> Offsets;
98 Allocation &Section = UnmappedSections[i];
108 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
115 Allocation &Section = UnmappedSections[i];
125 Offsets.push_back(std::pair<Allocation,uint64_
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DStackColoring.cpp271 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); local
272 if (Allocation) {
274 " with allocation: "<< Allocation->getName()<<"\n");

Completed in 112 milliseconds