/external/llvm/tools/lli/ |
H A D | RemoteMemoryManager.h | 31 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 D | RemoteMemoryManager.cpp | 26 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 D | Allocation.java | 33 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 D | AllocationStats.java | 40 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 D | AllAllocationsRecorder.java | 36 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 D | vkMemUtil.hpp | 35 * 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 D | vkMemUtil.cpp | 98 // 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 D | vktApiComputeInstanceResultBuffer.hpp | 60 de::MovePtr<vk::Allocation>* outAllocation); 67 de::MovePtr<vk::Allocation> m_bufferMem;
|
H A D | vktApiBufferComputeInstance.hpp | 40 de::MovePtr<vk::Allocation>* outAllocation,
|
H A D | vktApiComputeInstanceResultBuffer.cpp | 54 de::MovePtr<Allocation> *outAllocation) 71 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible);
|
/external/valgrind/drd/tests/ |
H A D | annotate_hb_race.stderr.exp | 4 Allocation context: BSS section of annotate_hb_race
|
H A D | std_thread2.stderr.exp | 5 Allocation context: BSS section of std_thread2
|
H A D | read_and_free_race.stderr.exp | 8 Address 0x........ is at offset 0 from 0x......... Allocation context:
|
H A D | tc21_pthonce.stderr.exp | 7 Allocation context: BSS section of tc21_pthonce 17 Allocation context: BSS section of tc21_pthonce
|
H A D | annotate_smart_pointer2.stderr.exp | 7 Address 0x........ is at offset ... from 0x......... Allocation context:
|
/external/deqp/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawBufferObjectUtil.hpp | 51 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 D | vktDrawBufferObjectUtil.cpp | 42 void Buffer::bindMemory (de::MovePtr<vk::Allocation> allocation)
|
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/ |
H A D | vktDynamicStateBufferObjectUtil.hpp | 52 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 D | vktDynamicStateBufferObjectUtil.cpp | 42 void Buffer::bindMemory (de::MovePtr<vk::Allocation> allocation)
|
/external/deqp/external/vulkancts/modules/vulkan/query_pool/ |
H A D | vktQueryPoolBufferObjectUtil.hpp | 51 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 D | innerloop.cpp | 54 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 D | vktSpvAsmComputeShaderTestUtil.hpp | 39 typedef de::MovePtr<vk::Allocation> AllocationMp; 40 typedef de::SharedPtr<vk::Allocation> AllocationSp;
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineImageSamplingInstance.hpp | 75 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 D | vktComputeTestsUtil.hpp | 50 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 D | vktImageTestsUtil.hpp | 70 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;
|