HomeSort by relevance Sort by last modified time
    Searched defs:Memory (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformPei/
MemoryCallback.c 24 This file includes a memory call back function notified when MRC is done,
74 // Collect memory ranges
80 // Need memory above 1MB to be collected here
117 VOID* Memory;
121 // Allocate LM memory and configure PDM if enabled by user.
133 Memory = AllocatePages ( Pages );
134 CopyMem(Memory , (VOID *) FixedPcdGet32(PcdFlashFvMainBase) , Size);
141 (VOID *) ((UINTN) Memory + (PcdGet32 (PcdFlashFvRecovery2Base) - PcdGet32 (PcdFlashFvMainBase))),
149 (VOID *) Memory,
  /libcore/luni/src/test/java/libcore/libcore/io/
MemoryTest.java 24 import libcore.io.Memory;
45 Memory.pokeIntArray(ptr, values, 0, values.length, false);
50 Memory.pokeIntArray(ptr, values, 0, values.length, true);
56 Memory.pokeIntArray(ptr + i * scale, values, i, 1, true);
65 assertEquals(expectedValues[i], Memory.peekInt(ptr + SizeOf.INT * i, swap));
86 Memory.pokeLongArray(ptr, values, 0, values.length, false);
91 Memory.pokeLongArray(ptr, values, 0, values.length, true);
97 Memory.pokeLongArray(ptr + i * scale, values, i, 1, true);
106 assertEquals(expectedValues[i], Memory.peekLong(ptr + SizeOf.LONG * i, swap));
124 Memory.pokeShortArray(ptr, values, 0, values.length, false)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
EfiLibAllocate.c 18 Support routines for memory allocation routines for use with drivers.
45 VOID *Memory;
47 Memory = NULL;
48 gBS->AllocatePool (EfiBootServicesData, AllocationSize, &Memory);
49 return Memory;
72 VOID *Memory;
74 Memory = NULL;
75 gBS->AllocatePool (EfiRuntimeServicesData, AllocationSize, &Memory);
76 return Memory;
99 VOID *Memory;
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiMemoryAllocationLib/
MemoryAllocationLib.c 29 is returned. If there is not enough memory remaining to satisfy the request, then NULL is
56 // Verify that there is sufficient memory to satisfy the allocation
62 // Update the PHIT to reflect the memory usage
66 // This routine used to create a memory allocation HOB a la PEI, but that's not
70 // Create a memory allocation HOB.
87 returned. If there is not enough memory at the specified alignment remaining to satisfy the
105 VOID *Memory;
121 // We would rather waste some memory to save PEI code size.
123 Memory = (VOID *)(UINTN)AllocatePages (Pages + EFI_SIZE_TO_PAGES (Alignment));
129 return (VOID *) (UINTN) (((UINTN) Memory + AlignmentMask) & ~AlignmentMask);
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.h 49 EFI_PHYSICAL_ADDRESS Memory;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Memory.h 1 //===- llvm/Support/Memory.h - Memory Support --------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Memory class.
23 /// This class encapsulates the notion of a memory block which has an address
24 /// and a size. It is used by the Memory class (a friend) as the result of
25 /// various memory allocation operations.
26 /// @see Memory
27 /// @brief Memory block abstraction.
35 void *Address; ///< Address of first byte of memory area
36 size_t Size; ///< Size, in bytes of the memory are
    [all...]
PredIteratorCache.h 32 /// Memory - This is the space that holds cached preds.
33 BumpPtrAllocator Memory;
51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size());
65 Memory.Reset();
  /hardware/interfaces/tests/memory/1.0/default/
MemoryTest.h 20 #include <android/hardware/tests/memory/1.0/IMemoryTest.h>
28 namespace memory { namespace in namespace:android::hardware::tests
40 using ::android::hardware::tests::memory::V1_0::IMemoryTest;
41 using ::android::hidl::memory::block::V1_0::MemoryBlock;
42 using ::android::hidl::memory::token::V1_0::IMemoryToken;
44 struct Memory : public IMemoryTest {
45 // Methods from ::android::hardware::tests::memory::V1_0::IMemoryTest follow.
64 } // namespace memory
  /frameworks/ml/nn/runtime/
Memory.h 32 // Represents a memory region.
33 class Memory {
35 Memory() {}
36 virtual ~Memory() {}
41 Memory(const Memory&) = delete;
42 Memory& operator=(const Memory&) = delete;
44 // Creates a shared memory object of the size specified in bytes.
49 // Returns a pointer to the underlying memory of this memory object
    [all...]
  /art/cmdline/
memory_representation.h 28 // An integral representation of bytes of memory.
31 struct Memory {
34 static Memory<kDivisor> FromBytes(size_t bytes) {
36 return Memory<kDivisor>(bytes);
39 Memory() : Value(0u) {}
40 Memory(size_t value) : Value(value) { // NOLINT [runtime/explicit] [5]
52 str = "Memory<" + std::to_string(kDivisor) + '>';
62 std::ostream& operator<<(std::ostream& stream, Memory<kDivisor> memory) {
63 return stream << memory.Value << '*' << kDivisor
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Library/
AcpiNextLib.h 61 EFI_ACPI_6_0_MEMORY_AFFINITY_STRUCTURE Memory[EFI_ACPI_MEMORY_AFFINITY_STRUCTURE_COUNT];
  /external/llvm/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
73 Memory.Reset();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
PredIteratorCache.h 33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory;
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
75 Memory.Reset();

Completed in 1425 milliseconds

1 2 3 4 5 6