HomeSort by relevance Sort by last modified time
    Searched refs:getHostPtr (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiComputeInstanceResultBuffer.cpp 48 deMemcpy(*results, m_bufferMem->getHostPtr(), sizeof(*results));
76 void* mapPtr = allocation->getHostPtr();
vktApiBufferComputeInstance.cpp 69 void* mapPtr = allocation->getHostPtr();
vktApiBufferViewAccessTests.cpp 338 deMemcpy(m_uniformBufferAlloc->getHostPtr(), uniformData.data(), (size_t)uniformSize);
616 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), (size_t)vertexDataSize);
784 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), m_resultBufferAlloc->getHostPtr()));
    [all...]
vktApiSmokeTests.cpp 869 void* vertexBufPtr = vertexBufferMemory->getHostPtr();
912 const tcu::ConstPixelBufferAccess resultAccess (tcuFormat, renderSize.x(), renderSize.y(), 1, readImageBufferMemory->getHostPtr());
    [all...]
vktApiCopiesAndBlittingTests.cpp 217 deMemcpy(bufferAlloc.getHostPtr(), bufferAccess.getDataPtr(), bufferSize);
354 deMemcpy(bufferAlloc->getHostPtr(), imageAccess.getDataPtr(), bufferSize);
578 tcu::copy(*resultLevel, tcu::ConstPixelBufferAccess(resultLevel->getFormat(), resultLevel->getSize(), bufferAlloc->getHostPtr()));
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkMemUtil.hpp 45 * be queried with getHostPtr(). No offset is needed when accessing host
63 void* getHostPtr (void) const { DE_ASSERT(m_hostPtr); return m_hostPtr; }
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderCase.cpp 78 void* const hostPtr = destAlloc->getHostPtr();
86 void* const hostPtr = destAlloc->getHostPtr();
414 if (deMemCmp(expectedOutput->data(), outputAllocs[outputNdx]->getHostPtr(), expectedOutput->getNumBytes()))
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeBasicComputeShaderTests.cpp 255 const deUint32* bufferPtr = static_cast<deUint32*>(bufferAllocation.getHostPtr());
426 const deUint32* bufferPtr = static_cast<deUint32*>(bufferAllocation.getHostPtr());
599 const deUint32* bufferPtr = static_cast<deUint32*>(bufferAllocation.getHostPtr());
723 deUint32* bufferPtr = static_cast<deUint32*>(stagingBufferAllocation.getHostPtr());
814 const deUint32* bufferPtr = static_cast<deUint32*>(outputBufferAllocation.getHostPtr());
815 const deUint32* refBufferPtr = static_cast<deUint32*>(stagingBuffer.getAllocation().getHostPtr());
    [all...]
vktComputeShaderBuiltinVarTests.cpp 418 memcpy(alloc.getHostPtr(), &stride, sizeOfUniformBuffer);
480 const deUint8* ptr = reinterpret_cast<deUint8*>(resultAlloc.getHostPtr());
vktComputeIndirectComputeDispatchTests.cpp 183 deUint8* indirectDataPtr = reinterpret_cast<deUint8*>(alloc.getHostPtr());
229 deUint8* resultDataPtr = reinterpret_cast<deUint8*>(alloc.getHostPtr());
337 const deUint8* const resultDataPtr = reinterpret_cast<deUint8*>(alloc.getHostPtr());
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBufferSparseBinding.cpp 255 deMemcpy(inputBuffer->getAllocation().getHostPtr(), &referenceData[0], m_bufferSize);
308 const deUint8* outputData = static_cast<const deUint8*>(allocation.getHostPtr());
vktSparseResourcesBufferSparseResidency.cpp 287 deMemcpy(inputBuffer->getAllocation().getHostPtr(), &referenceData[0], m_bufferSize);
379 const deUint8* outputData = static_cast<const deUint8*>(allocation.getHostPtr());
vktSparseResourcesImageSparseBinding.cpp 301 deMemcpy(inputBuffer->getAllocation().getHostPtr(), &referenceData[0], imageSizeInBytes);
378 const deUint8* outputData = static_cast<const deUint8*>(allocation.getHostPtr());
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawIndexedTest.cpp 131 deUint8* ptr = reinterpret_cast<deUint8*>(m_indexBuffer->getBoundMemory().getHostPtr());
232 deUint8* ptr = reinterpret_cast<deUint8*>(m_indexBuffer->getBoundMemory().getHostPtr());
vktDrawBaseClass.cpp 128 deUint8* ptr = reinterpret_cast<deUint8*>(m_vertexBuffer->getBoundMemory().getHostPtr());
vktDrawIndirectTest.cpp 250 deUint8* ptr = reinterpret_cast<deUint8*>(m_indirectBuffer->getBoundMemory().getHostPtr());
433 deUint8* ptr = reinterpret_cast<deUint8*>(m_indirectBuffer->getBoundMemory().getHostPtr());
vktDrawImageObjectUtil.cpp 379 deUint8* destPtr = reinterpret_cast<deUint8*>(stagingResource->getBoundMemory().getHostPtr());
412 const deUint8* srcPtr = reinterpret_cast<const deUint8*>(getBoundMemory().getHostPtr());
709 deUint8* destPtr = reinterpret_cast<deUint8*>(stagingResource->getBoundMemory().getHostPtr());
803 deUint8* destPtr = reinterpret_cast<deUint8*>(getBoundMemory().getHostPtr());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineEarlyFragmentTests.cpp     [all...]
vktPipelineCacheTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateBaseClass.cpp 133 deUint8* ptr = reinterpret_cast<unsigned char *>(m_vertexBuffer->getBoundMemory().getHostPtr());
vktDynamicStateImageObjectUtil.cpp 379 char* destPtr = reinterpret_cast<char*>(stagingResource->getBoundMemory().getHostPtr());
412 const char* srcPtr = reinterpret_cast<const char*>(getBoundMemory().getHostPtr());
709 char* destPtr = reinterpret_cast<char*>(stagingResource->getBoundMemory().getHostPtr());
803 char* destPtr = reinterpret_cast<char*>(getBoundMemory().getHostPtr());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolImageObjectUtil.cpp 356 char* destPtr = reinterpret_cast<char*>(stagingResource->getBoundMemory().getHostPtr());
389 const char* srcPtr = reinterpret_cast<const char*>(getBoundMemory().getHostPtr());
686 char* destPtr = reinterpret_cast<char*>(stagingResource->getBoundMemory().getHostPtr());
781 char* destPtr = reinterpret_cast<char*>(getBoundMemory().getHostPtr());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageAtomicOperationTests.cpp 492 tcu::PixelBufferAccess inputPixelBuffer(m_format, gridSize.x(), gridSize.y(), gridSize.z(), inputBufferAllocation.getHostPtr());
661 tcu::ConstPixelBufferAccess resultBuffer(m_format, gridSize.x(), gridSize.y(), gridSize.z(), outputBufferAllocation.getHostPtr());
    [all...]
vktImageLoadStoreTests.cpp 635 const tcu::ConstPixelBufferAccess result(mapVkFormat(m_format), imageSize, alloc.getHostPtr());
700 deUint8* const basePtr = static_cast<deUint8*>(alloc.getHostPtr());
702 deMemset(alloc.getHostPtr(), 0, static_cast<size_t>(constantsBufferSizeBytes));
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp 532 deMemcpy(alloc->getHostPtr(), dataPtr, size);
603 deMemcpy(alloc->getHostPtr(), dataPtr, (size_t)inputSize);
802 tcu::PixelBufferAccess destAccess (refTexture.getFormat(), refTexture.getWidth(), refTexture.getHeight(), 1, allocation->getHostPtr());
    [all...]

Completed in 6270 milliseconds

1 2 3