HomeSort by relevance Sort by last modified time
    Searched refs:Allocated (Results 1 - 24 of 24) sorted by null

  /external/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /device/linaro/bootloader/edk2/ArmPkg/Library/UncachedMemoryAllocationLib/
UncachedMemoryAllocationLib.c 55 BOOLEAN Allocated;
60 // Track the size of the non-allocated buffer in the linked-list
65 * of the previously allocated buffer.
72 * @param Allocation Address of the newly allocated buffer
104 if ((Node->Allocated == FALSE) && (Node->MemoryType == MemoryType)) {
109 Node->Allocated = TRUE;
130 NewNode->Allocated = TRUE;
182 NewNode->Allocated = TRUE;
220 Node->Allocated = FALSE;
225 // If the size of the non-allocated reaches the threshold we raise a warning.
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuBootOrderLib/
QemuBootOrderLib.c 149 @param[out] Result The array, allocated by the caller, to receive
153 @param[in out] NumResults On input, the number of elements allocated for
246 UINTN Allocated;
286 if (BootOrder->Produced == BootOrder->Allocated) {
290 ASSERT (BootOrder->Allocated > 0);
291 AllocatedNew = BootOrder->Allocated * 2;
293 BootOrder->Allocated * sizeof (*BootOrder->Data),
300 BootOrder->Allocated = AllocatedNew;
393 Parse an OpenFirmware device path node into the caller-allocated OFW_NODE
566 fragment, allocated by the caller. If the
    [all...]
  /external/pdfium/third_party/lcms/src/
cmsnamed.c 514 if (v ->Allocated == 0)
517 size = v ->Allocated * 2;
527 v ->Allocated = size;
542 while (v -> Allocated < n){
576 while (NewNC ->Allocated < v ->Allocated){
601 if (NamedColorList ->nColors + 1 > NamedColorList ->Allocated) {
lcms2_internal.h 675 _cmsMLUentry* Entries; // Array of pointers to strings allocated in MemPool
678 cmsUInt32Number PoolSize; // The maximum allocated size
695 cmsUInt32Number Allocated;
873 // of the LUTS, since ownership of original is up to the profile. The user should free allocated resources.
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciBus.h 148 BOOLEAN Allocated;
PciDeviceSupport.c 579 if (!Temp->Allocated) {
633 if (!Temp->Registered && Temp->Allocated) {
PciEnumeratorSupport.c 1173 PciIoDevice->Allocated = FALSE;
1175 PciIoDevice->Allocated = TRUE;
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 56 unsigned int Allocated:1;
249 if (reg->Allocated) {
262 s->Input[input].Allocated = 1;
276 s->Temporary[i].Allocated = 1;
r3xx_vertprog.c 555 unsigned int Allocated:1;
641 if (ta[orig].Allocated && inst == ta[orig].LastRead)
650 if (!ta[orig].Allocated) {
655 ta[orig].Allocated = 1;
  /external/swiftshader/third_party/LLVM/lib/Support/
StringRef.cpp 95 llvm::OwningArrayPtr<unsigned> Allocated;
99 Allocated.reset(previous);
  /external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs 18 public UInt32 _blockSize; // Size of Allocated memory block
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciBus.h 214 BOOLEAN Allocated;
PciResourceSupport.c 665 // then we indicate this device has been allocated naturally.
668 PciDev->Allocated = TRUE;
1219 This function is used to program the resource allocated
    [all...]
PciDeviceSupport.c 86 All direct or indirect allocated resource for this node will be freed.
624 @retval EFI_NOT_READY Device is not allocated.
666 if (!PciIoDevice->Allocated) {
737 if (!PciIoDevice->Registered && PciIoDevice->Allocated) {
793 @retval EFI_NOT_READY Device is not allocated.
PciEnumeratorSupport.c     [all...]
PciEnumerator.c     [all...]
PciLib.c     [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
PciBus.h 207 BOOLEAN Allocated;
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 52 enum Kind { // Reference to allocated memory.
53 Allocated,
54 // Reference to zero-allocated memory.
77 bool isAllocated() const { return K == Allocated; }
92 return RefState(Allocated, s, family);
117 CASE(Allocated)
406 // The allocated region symbol tracked by the main analysis.
429 // Did not track -> allocated. Other state (released) -> allocated.
438 // Did not track -> released. Other state (allocated) -> released
    [all...]
  /external/syzkaller/pkg/report/
linux.go 471 // When a report contains 'Call Trace', 'backtrace', 'Allocated' or 'Freed' keywords,
520 regexp.MustCompile(`Allocated`),
1015 title: compile("INFO: (Freed|Allocated) in (.*)"),
    [all...]
  /external/v8/src/compiler/
instruction.h 43 ALLOCATED,
58 // Constant operands participate in register allocation. They are allocated to
74 INSTRUCTION_OPERAND_PREDICATE(Allocated, ALLOCATED)
541 : LocationOperand(ALLOCATED, kind, rep, index) {}
548 INSTRUCTION_OPERAND_CASTS(AllocatedOperand, ALLOCATED);
    [all...]

Completed in 858 milliseconds