HomeSort by: relevance | last modified time | path
    Searched refs:Allocation (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/sys/external/bsd/acpica/dist/utilities/
uttrack.c 3 * Module Name: uttrack - Memory allocation tracking routines (debug only)
48 * Each memory allocation is tracked via a doubly linked list. Each
68 ACPI_DEBUG_MEM_BLOCK *Allocation);
128 * PARAMETERS: Size - Size of the allocation
146 ACPI_DEBUG_MEM_BLOCK *Allocation;
159 Allocation = AcpiOsAllocate (Size + sizeof (ACPI_DEBUG_MEM_HEADER));
160 if (!Allocation)
162 /* Report allocation error */
171 Allocation, Size, ACPI_MEM_MALLOC, Component, Module, Line);
174 AcpiOsFree (Allocation);
    [all...]
utalloc.c 3 * Module Name: utalloc - local memory allocation routines
57 * PARAMETERS: Size - Size of the allocation
71 void *Allocation;
77 Allocation = AcpiOsAllocate (Size);
78 if (Allocation)
82 memset (Allocation, 0, Size);
85 return (Allocation);
184 /* Memory allocation lists */
260 /* Debug only - display leftover memory allocation, if any */
372 * purposefully bypass the (optionally enabled) internal allocation
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/JITLink/
JITLinkMemoryManager.h 57 /// Represents an allocation created by the memory manager.
59 /// An allocation object is responsible for allocating and owning jit-linker
63 class Allocation {
67 virtual ~Allocation();
96 /// Create an Allocation object.
99 /// JITLinkMemoryManager implementers to manage per-dylib allocation pools
102 /// may be null (representing an allocation not associated with any
107 virtual Expected<std::unique_ptr<Allocation>>
114 Expected<std::unique_ptr<Allocation>>
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
JITLinkMemoryManager.cpp 17 JITLinkMemoryManager::Allocation::~Allocation() = default;
19 Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
25 // Local class for allocation.
26 class IPMMAlloc : public Allocation {
30 assert(SegBlocks.count(Seg) && "No allocation for segment");
35 assert(SegBlocks.count(Seg) && "No allocation for segment");
117 "Mapping exceeds allocation");
131 return std::unique_ptr<InProcessMemoryManager::Allocation>(
JITLinkGeneric.h 66 // 1.6: Run post-allocation passes
82 // 3.1: Call OnFinalized callback, handing off allocation.
112 JITLinkMemoryManager::Allocation &Alloc);
118 std::unique_ptr<JITLinkMemoryManager::Allocation> Alloc;
JITLinkGeneric.cpp 60 << "\" before post-allocation passes:\n";
64 // Run post-allocation passes.
355 const SegmentLayoutMap &Layout, JITLinkMemoryManager::Allocation &Alloc) {
427 assert(Alloc && "can not call deallocateAndBailOut before allocation");
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringMapEntry.h 50 void *Allocation = Allocator.Allocate(AllocSize, EntryAlign);
51 assert(Allocation && "Unhandled out-of-memory");
54 char *Buffer = reinterpret_cast<char *>(Allocation) + EntrySize;
58 return Allocation;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
TPCIndirectionUtils.h 129 using Allocation = jitlink::JITLinkMemoryManager::Allocation;
152 std::unique_ptr<jitlink::JITLinkMemoryManager::Allocation> ResolverBlock;
157 std::vector<std::unique_ptr<Allocation>> IndirectStubAllocs;
OrcRPCTargetProcessControl.h 44 class OrcRPCAllocation : public Allocation {
60 assert(I != HostAllocs.end() && "No host allocation for segment");
67 assert(I != TargetAllocs.end() && "No target allocation for segment");
78 "No target allocation for buffer");
150 Expected<std::unique_ptr<Allocation>>
ObjectLinkingLayer.h 183 using AllocPtr = std::unique_ptr<jitlink::JITLinkMemoryManager::Allocation>;
OrcRemoteTargetClient.h 333 class RPCMMAlloc : public jitlink::JITLinkMemoryManager::Allocation {
336 jitlink::JITLinkMemoryManager::Allocation::FinalizeContinuation;
360 assert(HostSegBlocks.count(Seg) && "No allocation for segment");
366 assert(TargetSegBlocks.count(Seg) && "No allocation for segment");
376 // TODO: Cannot release target allocation. RPCAPI has no function
446 // Map memory blocks into the allocation, that match the host allocation.
537 Expected<std::unique_ptr<Allocation>>
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
DebugObjectManagerPlugin.cpp 144 using Allocation = JITLinkMemoryManager::Allocation;
146 virtual Expected<std::unique_ptr<Allocation>>
153 std::unique_ptr<Allocation> Alloc{nullptr};
156 // Finalize working memory and take ownership of the resulting allocation. Start
158 // Ownership of the allocation remains with us for the rest of our lifetime.
193 Expected<std::unique_ptr<Allocation>>
317 Expected<std::unique_ptr<DebugObject::Allocation>>
343 std::unique_ptr<Allocation> Alloc = std::move(*AllocOrErr);
TPCIndirectionUtils.cpp 46 using Allocation = jitlink::JITLinkMemoryManager::Allocation;
51 std::vector<std::unique_ptr<Allocation>> TrampolineBlocks;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 47 for (void *Allocation : Allocations)
48 free(Allocation);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackColoring.cpp 249 // stack allocation for the function above would look like:
255 // Achieving this allocation is tricky, however, due to the way
703 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot);
704 if (Allocation) {
711 << " with allocation: " << Allocation->getName() << "\n");
785 const AllocaInst *Allocation = MFI->getObjectAllocation(Slot);
786 if (Allocation) {
788 << " with allocation: " << Allocation->getName())
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_report.cpp 157 const char *Allocation() const { return Magenta(); }
670 Printf("%s", d.Allocation());
777 Printf("%s", d.Allocation());
782 Printf("%s", d.Allocation());
895 const char *bug_type = "allocation-tail-overwritten";
902 Printf("%s", d.Allocation());
907 Printf("%s", d.Allocation());
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_report.cpp 134 const char *Allocation() const { return Magenta(); }
324 Printf("%s", d.Allocation());
466 Printf("%s", d.Allocation());
471 Printf("%s", d.Allocation());
622 const char *bug_type = "allocation-tail-overwritten";
629 Printf("%s", d.Allocation());
635 Printf("%s", d.Allocation());
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_descriptions.cc 424 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(),
asan_descriptions.h 49 const char *Allocation() { return Magenta(); }
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_descriptions.cpp 423 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(),
asan_descriptions.h 48 const char *Allocation() { return Magenta(); }
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_descriptions.cpp 423 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(),
asan_descriptions.h 48 const char *Allocation() { return Magenta(); }
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsFastISel.cpp 1348 SmallVector<AllocatedReg, 4> Allocation;
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);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
llvm-jitlink.cpp 344 Expected<std::unique_ptr<JITLinkMemoryManager::Allocation>>
349 // Local class for allocation.
350 class IPMMAlloc : public Allocation {
355 assert(SegBlocks.count(Seg) && "No allocation for segment");
360 assert(SegBlocks.count(Seg) && "No allocation for segment");
433 return std::unique_ptr<InProcessMemoryManager::Allocation>(

Completed in 37 milliseconds

1 2