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

/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Duttrack.c176 ACPI_DEBUG_MEM_BLOCK *Allocation);
254 ACPI_DEBUG_MEM_BLOCK *Allocation; local
267 Allocation = AcpiOsAllocate (Size + sizeof (ACPI_DEBUG_MEM_HEADER));
268 if (!Allocation)
279 Allocation, Size, ACPI_MEM_MALLOC, Component, Module, Line);
282 AcpiOsFree (Allocation);
297 return ((void *) &Allocation->UserSpace);
323 ACPI_DEBUG_MEM_BLOCK *Allocation; local
336 Allocation = AcpiOsAllocateZeroed (
338 if (!Allocation)
386 AcpiUtFreeAndTrack( void *Allocation, UINT32 Component, const char *Module, UINT32 Line) argument
454 AcpiUtFindAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation) argument
512 AcpiUtTrackAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation, ACPI_SIZE Size, UINT8 AllocType, UINT32 Component, const char *Module, UINT32 Line) argument
615 AcpiUtRemoveAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation, UINT32 Component, const char *Module, UINT32 Line) argument
[all...]
H A Dutalloc.c179 void *Allocation; local
185 Allocation = AcpiOsAllocate (Size);
186 if (Allocation)
190 memset (Allocation, 0, Size);
193 return (Allocation);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.h59 class Allocation { class in class:llvm::jitlink::JITLinkMemoryManager
63 virtual ~Allocation();
83 /// Create an Allocation object.
84 virtual Expected<std::unique_ptr<Allocation>>
91 Expected<std::unique_ptr<Allocation>>
H A DJITLink.h1268 notifyFinalized(std::unique_ptr<JITLinkMemoryManager::Allocation> A) = 0;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h89 struct Allocation { struct in class:lldb_private::IRMemoryMap
106 Allocation(lldb::addr_t process_alloc, lldb::addr_t process_start,
110 DISALLOW_COPY_AND_ASSIGN(Allocation);
113 static_assert(sizeof(Allocation) <=
115 "IRMemoryMap::Allocation is larger than expected");
119 typedef std::map<lldb::addr_t, Allocation> AllocationMap;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp17 JITLinkMemoryManager::Allocation::~Allocation() = default;
19 Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
25 class IPMMAlloc : public Allocation {
127 return std::unique_ptr<InProcessMemoryManager::Allocation>(
H A DJITLinkGeneric.h105 JITLinkMemoryManager::Allocation &Alloc) const = 0;
118 std::unique_ptr<JITLinkMemoryManager::Allocation> Alloc;
149 JITLinkMemoryManager::Allocation &Alloc) const override {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h48 for (void *Allocation : Allocations)
49 free(Allocation);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp269 IRMemoryMap::Allocation::Allocation(lldb::addr_t process_alloc, function in class:IRMemoryMap::Allocation
441 Allocation &allocation = iter->second;
457 Allocation &allocation = iter->second;
496 Allocation &al = iter->second;
534 Allocation &allocation = iter->second;
652 Allocation &allocation = iter->second;
797 Allocation &allocation = iter->second;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp118 const char *Allocation() const { return Magenta(); } function in class:__hwasan::Decorator
276 Printf("%s", d.Allocation());
318 Printf("%s", d.Allocation());
323 Printf("%s", d.Allocation());
453 Printf("%s", d.Allocation());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DObjectLinkingLayer.h137 using AllocPtr = std::unique_ptr<jitlink::JITLinkMemoryManager::Allocation>;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp668 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); local
669 if (Allocation) {
676 << " with allocation: " << Allocation->getName() << "\n");
740 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); local
741 if (Allocation) {
743 << " with allocation: " << Allocation->getName());
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp423 Printf("%sfreed by thread %s here:%s\n", d.Allocation(),
427 Printf("%spreviously allocated by thread %s here:%s\n", d.Allocation(),
430 Printf("%sallocated by thread %s here:%s\n", d.Allocation(),
H A Dasan_descriptions.h48 const char *Allocation() { return Magenta(); } function in class:__asan::Decorator
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1351 SmallVector<AllocatedReg, 4> Allocation; local
1392 Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++);
1412 Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++);
1429 Allocation.emplace_back(&Mips::FGR32RegClass, *NextFGR32++);
1448 Allocation.emplace_back(&Mips::AFGR64RegClass, *NextAFGR64++);
1467 unsigned SrcReg = Allocation[ArgNo].Reg;
1468 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, Allocation[ArgNo].RC);
1472 unsigned ResultReg = createResultReg(Allocation[ArgNo].RC);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DObjectLinkingLayer.cpp150 std::unique_ptr<JITLinkMemoryManager::Allocation> A) override {

Completed in 167 milliseconds