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

12

/netbsd-current/sys/external/bsd/acpica/dist/utilities/
H A Duttrack.c68 ACPI_DEBUG_MEM_BLOCK *Allocation);
146 ACPI_DEBUG_MEM_BLOCK *Allocation; local
159 Allocation = AcpiOsAllocate (Size + sizeof (ACPI_DEBUG_MEM_HEADER));
160 if (!Allocation)
171 Allocation, Size, ACPI_MEM_MALLOC, Component, Module, Line);
174 AcpiOsFree (Allocation);
189 return ((void *) &Allocation->UserSpace);
215 ACPI_DEBUG_MEM_BLOCK *Allocation; local
228 Allocation = AcpiOsAllocateZeroed (
230 if (!Allocation)
278 AcpiUtFreeAndTrack( void *Allocation, UINT32 Component, const char *Module, UINT32 Line) argument
346 AcpiUtFindAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation) argument
404 AcpiUtTrackAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation, ACPI_SIZE Size, UINT8 AllocType, UINT32 Component, const char *Module, UINT32 Line) argument
507 AcpiUtRemoveAllocation( ACPI_DEBUG_MEM_BLOCK *Allocation, UINT32 Component, const char *Module, UINT32 Line) argument
[all...]
H A Dutalloc.c71 void *Allocation; local
77 Allocation = AcpiOsAllocate (Size);
78 if (Allocation)
82 memset (Allocation, 0, Size);
85 return (Allocation);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.h63 class Allocation { class in class:llvm::jitlink::JITLinkMemoryManager
67 virtual ~Allocation();
96 /// Create an Allocation object.
107 virtual Expected<std::unique_ptr<Allocation>>
114 Expected<std::unique_ptr<Allocation>>
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp17 JITLinkMemoryManager::Allocation::~Allocation() = default;
19 Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
26 class IPMMAlloc : public Allocation {
131 return std::unique_ptr<InProcessMemoryManager::Allocation>(
H A DJITLinkGeneric.h112 JITLinkMemoryManager::Allocation &Alloc);
118 std::unique_ptr<JITLinkMemoryManager::Allocation> Alloc;
H A DJITLinkGeneric.cpp355 const SegmentLayoutMap &Layout, JITLinkMemoryManager::Allocation &Alloc) {
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DTPCIndirectionUtils.h129 using Allocation = jitlink::JITLinkMemoryManager::Allocation;
152 std::unique_ptr<jitlink::JITLinkMemoryManager::Allocation> ResolverBlock;
157 std::vector<std::unique_ptr<Allocation>> IndirectStubAllocs;
H A DOrcRPCTargetProcessControl.h44 class OrcRPCAllocation : public Allocation {
150 Expected<std::unique_ptr<Allocation>>
H A DObjectLinkingLayer.h183 using AllocPtr = std::unique_ptr<jitlink::JITLinkMemoryManager::Allocation>;
H A DOrcRemoteTargetClient.h333 class RPCMMAlloc : public jitlink::JITLinkMemoryManager::Allocation {
336 jitlink::JITLinkMemoryManager::Allocation::FinalizeContinuation;
537 Expected<std::unique_ptr<Allocation>>
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringMapEntry.h50 void *Allocation = Allocator.Allocate(AllocSize, EntryAlign); local
51 assert(Allocation && "Unhandled out-of-memory");
54 char *Buffer = reinterpret_cast<char *>(Allocation) + EntrySize;
58 return Allocation;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.cpp144 using Allocation = JITLinkMemoryManager::Allocation;
146 virtual Expected<std::unique_ptr<Allocation>>
153 std::unique_ptr<Allocation> Alloc{nullptr};
193 Expected<std::unique_ptr<Allocation>>
317 Expected<std::unique_ptr<DebugObject::Allocation>>
343 std::unique_ptr<Allocation> Alloc = std::move(*AllocOrErr);
H A DTPCIndirectionUtils.cpp46 using Allocation = jitlink::JITLinkMemoryManager::Allocation;
51 std::vector<std::unique_ptr<Allocation>> TrampolineBlocks;
H A DObjectLinkingLayer.cpp302 std::unique_ptr<JITLinkMemoryManager::Allocation> A) override {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h47 for (void *Allocation : Allocations)
48 free(Allocation);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DStackColoring.cpp703 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); local
704 if (Allocation) {
711 << " with allocation: " << Allocation->getName() << "\n");
785 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); local
786 if (Allocation) {
788 << " with allocation: " << Allocation->getName());
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_report.cpp134 const char *Allocation() const { return Magenta(); } function in class:__hwasan::Decorator
324 Printf("%s", d.Allocation());
466 Printf("%s", d.Allocation());
471 Printf("%s", d.Allocation());
629 Printf("%s", d.Allocation());
635 Printf("%s", d.Allocation());
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_descriptions.cc424 Printf("%sfreed by thread %s here:%s\n", d.Allocation(),
428 Printf("%spreviously allocated by thread %s here:%s\n", d.Allocation(),
431 Printf("%sallocated by thread %s here:%s\n", d.Allocation(),
H A Dasan_descriptions.h49 const char *Allocation() { return Magenta(); } function in class:__asan::Decorator
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_descriptions.cc422 Printf("%sfreed by thread %s here:%s\n", d.Allocation(),
426 Printf("%spreviously allocated by thread %s here:%s\n", d.Allocation(),
429 Printf("%sallocated by thread %s here:%s\n", d.Allocation(),
H A Dasan_descriptions.h47 const char *Allocation() { return Magenta(); } function in class:__asan::Decorator
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/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
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1348 SmallVector<AllocatedReg, 4> Allocation; local
1389 Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++);
1409 Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++);
1426 Allocation.emplace_back(&Mips::FGR32RegClass, *NextFGR32++);
1445 Allocation.emplace_back(&Mips::AFGR64RegClass, *NextAFGR64++);
1464 unsigned SrcReg = Allocation[ArgNo].Reg;
1465 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, Allocation[ArgNo].RC);
1469 unsigned ResultReg = createResultReg(Allocation[ArgNo].RC);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp344 Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
350 class IPMMAlloc : public Allocation {
433 return std::unique_ptr<InProcessMemoryManager::Allocation>(

Completed in 190 milliseconds

12