HomeSort by relevance Sort by last modified time
    Searched defs:Allocated (Results 1 - 21 of 21) 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-subzero/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
edit_distance.h 63 std::unique_ptr<unsigned[]> Allocated;
67 Allocated.reset(Row);
  /tools/tradefederation/core/remote/src/com/android/tradefed/device/
DeviceAllocationState.java 26 /** device is available to be allocated to a test */
30 /** device is currently allocated to a test */
31 Allocated(new AllocatedHandler()),
  /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/DuetPkg/PciBusNoEnumerationDxe/
PciBus.h 148 BOOLEAN Allocated;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
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;
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;
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
MockDeviceManager.java 205 DeviceAllocationState.Allocated, DeviceAllocationState.Available);
261 DeviceAllocationState.Allocated);
305 Assert.assertEquals("allocated device was not returned to queue", mTotalDevices,
  /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;
284 if (BootOrder->Produced == BootOrder->Allocated) {
288 ASSERT (BootOrder->Allocated > 0);
289 AllocatedNew = BootOrder->Allocated * 2;
291 BootOrder->Allocated * sizeof (*BootOrder->Data),
298 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...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciBus.h 215 BOOLEAN Allocated;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
PciBus.h 207 BOOLEAN Allocated;
  /external/pdfium/third_party/lcms2-2.6/src/
lcms2_internal.h 662 _cmsMLUentry* Entries; // Array of pointers to strings allocated in MemPool
665 cmsUInt32Number PoolSize; // The maximum allocated size
682 cmsUInt32Number Allocated;
858 // of the LUTS, since ownership of original is up to the profile. The user should free allocated resources.
    [all...]
  /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...]

Completed in 1622 milliseconds