Searched refs:Allocation (Results 1 - 25 of 97) sorted by relevance

1234

/external/llvm/tools/lli/
H A DRemoteMemoryManager.h31 struct Allocation { struct in class:llvm::RemoteMemoryManager
32 Allocation() {} function in struct:llvm::RemoteMemoryManager::Allocation
33 Allocation(sys::MemoryBlock mb, unsigned a, bool code) function in struct:llvm::RemoteMemoryManager::Allocation
42 // This vector contains Allocation objects for all sections which we have
45 SmallVector<Allocation, 2> AllocatedSections;
47 // This vector contains pointers to Allocation objects for any sections we
51 SmallVector<Allocation, 2> UnmappedSections;
55 DenseMap<uint64_t, Allocation> MappedSections;
H A DRemoteMemoryManager.cpp26 for (SmallVector<Allocation, 2>::iterator
41 AllocatedSections.push_back( Allocation(Block, Alignment, true) );
43 UnmappedSections.push_back( Allocation(Block, Alignment, true) );
57 AllocatedSections.push_back( Allocation(Block, Alignment, false) );
59 UnmappedSections.push_back( Allocation(Block, Alignment, false) );
94 SmallVector<std::pair<Allocation, uint64_t>, 16> Offsets;
99 Allocation &Section = UnmappedSections[i];
109 Offsets.push_back(std::pair<Allocation,uint64_t>(Section, CurOffset));
116 Allocation &Section = UnmappedSections[i];
126 Offsets.push_back(std::pair<Allocation,uint64_
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DAllocation.java33 final class Allocation { class
42 static long getTotalSize(Collection<Allocation> allocations) {
44 for (Allocation allocation : allocations) {
54 Allocation(String description, long size, List<StackTraceElement> location) { method in class:Allocation
65 if (obj instanceof Allocation) {
66 Allocation other = (Allocation) obj;
H A DAllocationStats.java40 private final ImmutableMultiset<Allocation> allocations;
48 this(allocationCount, allocationSize, reps, ImmutableMultiset.<Allocation>of());
55 AllocationStats(Collection<Allocation> allocations, int reps) {
56 this(allocations.size(), Allocation.getTotalSize(allocations), reps,
61 Multiset<Allocation> allocations) {
85 for (Entry<Allocation> entry : baseline.allocations.entrySet()) {
129 for (Entry<Allocation> entry : allocations.entrySet()) {
182 private final Multiset<Allocation> additions;
183 private final Multiset<Allocation> removals;
189 Multiset<Allocation> addition
[all...]
H A DAllAllocationsRecorder.java36 private final ConcurrentHashMultiset<Allocation> allocations = ConcurrentHashMultiset.create();
67 new Allocation(desc, size, asList(stackTrace).subList(startIndex, endIndex + 1)));
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkMemUtil.hpp35 * Allocation represents block of device memory and is allocated by
39 * Allocation doesn't necessarily correspond to a whole VkDeviceMemory, but
41 * (getMemory()) managed by Allocation is passed to Vulkan API calls,
48 * Memory mappings are managed solely by Allocation, i.e. unmapping or
49 * re-mapping VkDeviceMemory owned by Allocation is not allowed.
51 class Allocation class in namespace:vk
54 virtual ~Allocation (void);
66 Allocation (VkDeviceMemory memory, VkDeviceSize offset, void* hostPtr);
117 virtual de::MovePtr<Allocation> allocate (const VkMemoryAllocateInfo& allocInfo, VkDeviceSize alignment) = 0;
118 virtual de::MovePtr<Allocation> allocat
[all...]
H A DvkMemUtil.cpp98 // Allocation
100 Allocation::Allocation (VkDeviceMemory memory, VkDeviceSize offset, void* hostPtr)
107 Allocation::~Allocation (void)
148 class SimpleAllocation : public Allocation
160 : Allocation (*mem, (VkDeviceSize)0, hostPtr ? hostPtr->get() : DE_NULL)
177 MovePtr<Allocation> SimpleAllocator::allocate (const VkMemoryAllocateInfo& allocInfo, VkDeviceSize alignment)
187 return MovePtr<Allocation>(new SimpleAllocation(mem, hostPtr));
190 MovePtr<Allocation> SimpleAllocato
[all...]
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiComputeInstanceResultBuffer.hpp60 de::MovePtr<vk::Allocation>* outAllocation);
67 de::MovePtr<vk::Allocation> m_bufferMem;
H A DvktApiBufferComputeInstance.hpp40 de::MovePtr<vk::Allocation>* outAllocation,
H A DvktApiComputeInstanceResultBuffer.cpp54 de::MovePtr<Allocation> *outAllocation)
71 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible);
/external/valgrind/drd/tests/
H A Dannotate_hb_race.stderr.exp4 Allocation context: BSS section of annotate_hb_race
H A Dstd_thread2.stderr.exp5 Allocation context: BSS section of std_thread2
H A Dread_and_free_race.stderr.exp8 Address 0x........ is at offset 0 from 0x......... Allocation context:
H A Dtc21_pthonce.stderr.exp7 Allocation context: BSS section of tc21_pthonce
17 Allocation context: BSS section of tc21_pthonce
H A Dannotate_smart_pointer2.stderr.exp7 Address 0x........ is at offset ... from 0x......... Allocation context:
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawBufferObjectUtil.hpp51 void bindMemory (de::MovePtr<vk::Allocation> allocation);
54 vk::Allocation getBoundMemory (void) const { return *m_allocation; }
61 de::MovePtr<vk::Allocation> m_allocation;
H A DvktDrawBufferObjectUtil.cpp42 void Buffer::bindMemory (de::MovePtr<vk::Allocation> allocation)
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateBufferObjectUtil.hpp52 void bindMemory (de::MovePtr<vk::Allocation> allocation);
55 vk::Allocation getBoundMemory (void) const { return *m_allocation; }
62 de::MovePtr<vk::Allocation> m_allocation;
H A DvktDynamicStateBufferObjectUtil.cpp42 void Buffer::bindMemory (de::MovePtr<vk::Allocation> allocation)
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolBufferObjectUtil.hpp51 void bindMemory (de::MovePtr<vk::Allocation> allocation);
54 vk::Allocation getBoundMemory (void) const { return *m_allocation; }
61 de::MovePtr<vk::Allocation> m_allocation;
/external/opencv3/modules/rsobjdetect/src/
H A Dinnerloop.cpp54 sp<Allocation> outAllocation;
59 outAllocation = Allocation::createTyped(rs,t2);
61 sp<Allocation> inAllocation;
66 inAllocation = Allocation::createTyped(rs,t);
70 sp<Allocation> inAllocationSq;
72 inAllocationSq = Allocation::createTyped(rs,t);
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmComputeShaderTestUtil.hpp39 typedef de::MovePtr<vk::Allocation> AllocationMp;
40 typedef de::SharedPtr<vk::Allocation> AllocationSp;
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineImageSamplingInstance.hpp75 de::MovePtr<vk::Allocation> m_imageAlloc;
88 de::MovePtr<vk::Allocation> m_colorImageAlloc;
98 de::MovePtr<vk::Allocation> m_vertexBufferAlloc;
/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeTestsUtil.hpp50 vk::Allocation& getAllocation (void) const { return *m_allocation; }
53 de::MovePtr<vk::Allocation> m_allocation;
71 vk::Allocation& getAllocation (void) const { return *m_allocation; }
74 de::MovePtr<vk::Allocation> m_allocation;
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageTestsUtil.hpp70 vk::Allocation& getAllocation (void) const { return *m_allocation; }
73 de::MovePtr<vk::Allocation> m_allocation;
91 vk::Allocation& getAllocation (void) const { return *m_allocation; }
94 de::MovePtr<vk::Allocation> m_allocation;

Completed in 481 milliseconds

1234