HomeSort by: relevance | last modified time | path
    Searched defs:Allocation (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
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...]
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...]
  /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/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/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_descriptions.h 49 const char *Allocation() { return Magenta(); }
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_descriptions.h 48 const char *Allocation() { return Magenta(); }
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_descriptions.h 48 const char *Allocation() { return Magenta(); }
  /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.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/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/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);

Completed in 74 milliseconds