Home
last modified time | relevance | path

Searched refs:Allocation (Results 1 – 25 of 30) sorted by relevance

12

/freebsd-13.1/sys/contrib/dev/acpica/components/utilities/
H A Duttrack.c268 if (!Allocation) in AcpiUtAllocateAndTrack()
338 if (!Allocation) in AcpiUtAllocateZeroedAndTrack()
399 if (NULL == Allocation) in AcpiUtFreeAndTrack()
549 Allocation)); in AcpiUtTrackAllocation()
558 Allocation->Line = Line; in AcpiUtTrackAllocation()
569 Allocation; in AcpiUtTrackAllocation()
654 (Allocation->Previous)->Next = Allocation->Next; in AcpiUtRemoveAllocation()
661 if (Allocation->Next) in AcpiUtRemoveAllocation()
663 (Allocation->Next)->Previous = Allocation->Previous; in AcpiUtRemoveAllocation()
667 &Allocation->UserSpace, Allocation->Size)); in AcpiUtRemoveAllocation()
[all …]
H A Dutalloc.c179 void *Allocation; in AcpiOsAllocateZeroed() local
185 Allocation = AcpiOsAllocate (Size); in AcpiOsAllocateZeroed()
186 if (Allocation) in AcpiOsAllocateZeroed()
190 memset (Allocation, 0, Size); in AcpiOsAllocateZeroed()
193 return (Allocation); in AcpiOsAllocateZeroed()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRMemoryMap.h89 struct Allocation { struct
106 Allocation(lldb::addr_t process_alloc, lldb::addr_t process_start, argument
110 Allocation(const Allocation &) = delete;
111 const Allocation &operator=(const Allocation &) = delete; argument
114 static_assert(sizeof(Allocation) <=
120 typedef std::map<lldb::addr_t, Allocation> AllocationMap;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.h63 class Allocation {
67 virtual ~Allocation();
107 virtual Expected<std::unique_ptr<Allocation>>
114 Expected<std::unique_ptr<Allocation>>
H A DJITLink.h1654 notifyFinalized(std::unique_ptr<JITLinkMemoryManager::Allocation> A) = 0;
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp17 JITLinkMemoryManager::Allocation::~Allocation() = default;
19 Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
26 class IPMMAlloc : public Allocation { in allocate()
131 return std::unique_ptr<InProcessMemoryManager::Allocation>( in allocate()
H A DJITLinkGeneric.h112 JITLinkMemoryManager::Allocation &Alloc);
118 std::unique_ptr<JITLinkMemoryManager::Allocation> Alloc;
H A DJITLinkGeneric.cpp355 const SegmentLayoutMap &Layout, JITLinkMemoryManager::Allocation &Alloc) { in copyBlockContentToWorkingMemory()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMapEntry.h50 void *Allocation = Allocator.Allocate(AllocSize, EntryAlign); in allocateWithKey() local
51 assert(Allocation && "Unhandled out-of-memory"); in allocateWithKey()
54 char *Buffer = reinterpret_cast<char *>(Allocation) + EntrySize; in allocateWithKey()
58 return Allocation; in allocateWithKey()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCIndirectionUtils.h129 using Allocation = jitlink::JITLinkMemoryManager::Allocation;
152 std::unique_ptr<jitlink::JITLinkMemoryManager::Allocation> ResolverBlock;
157 std::vector<std::unique_ptr<Allocation>> IndirectStubAllocs;
H A DOrcRPCExecutorProcessControl.h44 class OrcRPCAllocation : public Allocation {
150 Expected<std::unique_ptr<Allocation>>
H A DObjectLinkingLayer.h187 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>>
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugObjectManagerPlugin.cpp144 using Allocation = JITLinkMemoryManager::Allocation; typedef in llvm::orc::DebugObject
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); in finalizeWorkingMemory()
H A DEPCIndirectionUtils.cpp46 using Allocation = jitlink::JITLinkMemoryManager::Allocation; typedef in __anon62d646910111::EPCTrampolinePool
51 std::vector<std::unique_ptr<Allocation>> TrampolineBlocks;
H A DObjectLinkingLayer.cpp301 std::unique_ptr<JITLinkMemoryManager::Allocation> A) override { in notifyFinalized()
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DIRMemoryMap.cpp269 IRMemoryMap::Allocation::Allocation(lldb::addr_t process_alloc, in Allocation() function in IRMemoryMap::Allocation
441 Allocation &allocation = iter->second; in Leak()
457 Allocation &allocation = iter->second; in Free()
496 Allocation &al = iter->second; in GetAllocSize()
534 Allocation &allocation = iter->second; in WriteMemory()
652 Allocation &allocation = iter->second; in ReadMemory()
797 Allocation &allocation = iter->second; in GetMemoryData()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp134 const char *Allocation() const { return Magenta(); } in Allocation() function in __hwasan::Decorator
324 Printf("%s", d.Allocation()); in ShowHeapOrGlobalCandidate()
458 Printf("%s", d.Allocation()); in PrintAddressDescription()
463 Printf("%s", d.Allocation()); in PrintAddressDescription()
592 Printf("%s", d.Allocation()); in ReportTailOverwritten()
598 Printf("%s", d.Allocation()); in ReportTailOverwritten()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp703 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); in collectMarkers() local
704 if (Allocation) { in collectMarkers()
711 << " with allocation: " << Allocation->getName() << "\n"); in collectMarkers()
785 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot); in collectMarkers() local
786 if (Allocation) { in collectMarkers()
788 << " with allocation: " << Allocation->getName()); in collectMarkers()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h47 for (void *Allocation : Allocations) in ~AllocaHolder() local
48 free(Allocation); in ~AllocaHolder()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.cpp422 Printf("%sfreed by thread %s here:%s\n", d.Allocation(), in Print()
426 Printf("%spreviously allocated by thread %s here:%s\n", d.Allocation(), in Print()
429 Printf("%sallocated by thread %s here:%s\n", d.Allocation(), in Print()
H A Dasan_descriptions.h48 const char *Allocation() { return Magenta(); } in Allocation() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1348 SmallVector<AllocatedReg, 4> Allocation; in fastLowerArguments() local
1389 Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++); in fastLowerArguments()
1409 Allocation.emplace_back(&Mips::GPR32RegClass, *NextGPR32++); in fastLowerArguments()
1426 Allocation.emplace_back(&Mips::FGR32RegClass, *NextFGR32++); in fastLowerArguments()
1445 Allocation.emplace_back(&Mips::AFGR64RegClass, *NextAFGR64++); in fastLowerArguments()
1464 unsigned SrcReg = Allocation[ArgNo].Reg; in fastLowerArguments()
1465 unsigned DstReg = FuncInfo.MF->addLiveIn(SrcReg, Allocation[ArgNo].RC); in fastLowerArguments()
1469 unsigned ResultReg = createResultReg(Allocation[ArgNo].RC); in fastLowerArguments()
/freebsd-13.1/sys/contrib/device-tree/Bindings/pci/
H A Dhost-generic-pci.yaml53 addresses by synthesizing Enhanced Allocation (EA) capabilities for
/freebsd-13.1/contrib/openbsm/etc/
H A Daudit_event10 # Allocation of BSM event identifier ranges:

12