Home
last modified time | relevance | path

Searched refs:hostPtr (Results 1 – 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
DvkMemUtil.cpp91 Allocation::Allocation (VkDeviceMemory memory, VkDeviceSize offset, void* hostPtr) in Allocation() argument
94 , m_hostPtr (hostPtr) in Allocation()
149 SimpleAllocation (Move<VkDeviceMemory> mem, MovePtr<HostPtr> hostPtr);
157 SimpleAllocation::SimpleAllocation (Move<VkDeviceMemory> mem, MovePtr<HostPtr> hostPtr) in SimpleAllocation() argument
158 : Allocation (*mem, (VkDeviceSize)0, hostPtr ? hostPtr->get() : DE_NULL) in SimpleAllocation()
160 , m_hostPtr (hostPtr) in SimpleAllocation()
180 MovePtr<HostPtr> hostPtr; in allocate() local
183 hostPtr = MovePtr<HostPtr>(new HostPtr(m_vk, m_device, *mem, 0u, allocInfo.allocationSize, 0u)); in allocate()
185 return MovePtr<Allocation>(new SimpleAllocation(mem, hostPtr)); in allocate()
200 MovePtr<HostPtr> hostPtr; in allocate() local
[all …]
DvkMemUtil.hpp66 Allocation (VkDeviceMemory memory, VkDeviceSize offset, void* hostPtr);
/external/ImageMagick/MagickCore/
Daccelerate.c1032 *hostPtr, in ComputeContrastStretchImage() local
1119 hostPtr = histogram; in ComputeContrastStretchImage()
1124 hostPtr = histogram; in ComputeContrastStretchImage()
1128 …library->clCreateBuffer(device->context, mem_flags, length * sizeof(cl_uint4), hostPtr, &clStatus); in ComputeContrastStretchImage()
1440 hostPtr = stretch_map; in ComputeContrastStretchImage()
1445 hostPtr = stretch_map; in ComputeContrastStretchImage()
1449 …rary->clCreateBuffer(device->context, mem_flags, length * sizeof(PixelPacket), hostPtr, &clStatus); in ComputeContrastStretchImage()
1637 *hostPtr; in ComputeConvolveImage() local
1700 hostPtr = filteredPixels; in ComputeConvolveImage()
1705 hostPtr = NULL; in ComputeConvolveImage()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmComputeShaderCase.cpp89 void* const hostPtr = destAlloc->getHostPtr(); in setMemory() local
91 deMemcpy((deUint8*)hostPtr, data, numBytes); in setMemory()
97 void* const hostPtr = destAlloc->getHostPtr(); in fillMemoryWithValue() local
99 deMemset((deUint8*)hostPtr, value, numBytes); in fillMemoryWithValue()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryBindingTests.cpp72 , hostPtr (DE_NULL) in MemoryMappingRAII()
75 vk.mapMemory(dev, memory, offset, size, flags, &hostPtr); in MemoryMappingRAII()
81 hostPtr = DE_NULL; in ~MemoryMappingRAII()
86 return hostPtr; in ptr()
100 void* hostPtr; member in vkt::memory::__anon912718e30111::MemoryMappingRAII