Home
last modified time | relevance | path

Searched refs:resultAlloc (Results 1 – 10 of 10) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/subgroups/
DvktSubgroupsTestsUtils.cpp2158 const Allocation& resultAlloc = inputBuffers[ndx]->getAllocation(); in allStages() local
2159 invalidateAlloc(context.getDeviceInterface(), context.getDevice(), resultAlloc); in allStages()
2161 datas.push_back(resultAlloc.getHostPtr()); in allStages()
2169 const Allocation& resultAlloc = inputBuffers[index]->getAllocation(); in allStages() local
2170 invalidateAlloc(context.getDeviceInterface(), context.getDevice(), resultAlloc); in allStages()
2172 datas.push_back(resultAlloc.getHostPtr()); in allStages()
2182 const Allocation& resultAlloc = imageBufferResult.getAllocation(); in allStages() local
2183 invalidateAlloc(context.getDeviceInterface(), context.getDevice(), resultAlloc); in allStages()
2186 datas.push_back(resultAlloc.getHostPtr()); in allStages()
2600 const Allocation& resultAlloc = resultBuffer.getAllocation(); in makeFragmentFrameBufferTest() local
[all …]
/external/deqp/external/vulkancts/modules/vulkan/tessellation/
DvktTessellationFractionalSpacingTests.cpp624 const Allocation& resultAlloc = resultBuffer.getAllocation(); in test() local
625 …invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBu… in test()
627 const deInt32 numResults = *static_cast<deInt32*>(resultAlloc.getHostPtr()); in test()
628 …const std::vector<float> resultTessCoords = readFloatArray(numResults, resultAlloc.getHostPtr(), s… in test()
DvktTessellationCoordinatesTests.cpp594 const Allocation& resultAlloc = resultBuffer.getAllocation(); in iterate() local
595 …invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBu… in iterate()
597 const deInt32 numResults = *static_cast<deInt32*>(resultAlloc.getHostPtr()); in iterate()
598 …Vec3> resultTessCoords = readInterleavedData<tcu::Vec3>(numResults, resultAlloc.getHostPtr(), r… in iterate()
DvktTessellationInvarianceTests.cpp674 const Allocation& resultAlloc = m_resultBuffer.getAllocation(); in draw() local
675 …invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), m_result… in draw()
681 result.numPrimitives = *static_cast<deInt32*>(resultAlloc.getHostPtr()); in draw()
682 … = sorted(readInterleavedData<PerPrimitive>(result.numPrimitives, resultAlloc.getHostPtr(), m… in draw()
1468 const Allocation& resultAlloc = resultBuffer.getAllocation(); in iterate() local
1469 …invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBu… in iterate()
1473 const deInt32 numPrimitives = *static_cast<deInt32*>(resultAlloc.getHostPtr()); in iterate()
1474 …es = sorted(readInterleavedData<PerPrimitive>(numPrimitives, resultAlloc.getHostPtr(), r… in iterate()
2097 const Allocation& resultAlloc = resultBuffer.getAllocation(); in test() local
2098 …invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBu… in test()
[all …]
DvktTessellationPrimitiveDiscardTests.cpp548 const Allocation& resultAlloc = resultBuffer.getAllocation(); in test() local
549 …invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBu… in test()
551 const deInt32 numResultVertices = *static_cast<deInt32*>(resultAlloc.getHostPtr()); in test()
DvktTessellationUserDefinedIO.cpp903 const Allocation& resultAlloc = resultBuffer.getAllocation(); in iterate() local
904 …invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBu… in iterate()
906 const deInt32 numVertices = *static_cast<deInt32*>(resultAlloc.getHostPtr()); in iterate()
907 …const deUint32* const vertices = reinterpret_cast<deUint32*>(static_cast<deUint8*>(resultAlloc.… in iterate()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationInternallySynchronizedObjectsTests.cpp333 const Allocation& resultAlloc = resultBuffer.getAllocation(); in executeComputePipeline() local
334 invalidateAlloc(vk, device, resultAlloc); in executeComputePipeline()
336 const deInt32* ptr = reinterpret_cast<deInt32*>(resultAlloc.getHostPtr()); in executeComputePipeline()
427 const Allocation& resultAlloc = resultBuffer.getAllocation(); in executeGraphicPipeline() local
428 invalidateAlloc(vk, device, resultAlloc); in executeGraphicPipeline()
430 const deInt32* ptr = reinterpret_cast<deInt32*>(resultAlloc.getHostPtr()); in executeGraphicPipeline()
/external/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeShaderBuiltinVarTests.cpp507 const Allocation& resultAlloc = resultBuffer.getAllocation(); in iterate() local
508 invalidateAlloc(m_vki, m_device, resultAlloc); in iterate()
510 const deUint8* ptr = reinterpret_cast<deUint8*>(resultAlloc.getHostPtr()); in iterate()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSpecConstantTests.cpp527 const Allocation& resultAlloc = resultBuffer.getAllocation(); in iterate() local
528 invalidateAlloc(vk, device, resultAlloc); in iterate()
530 if (verifyValues(m_context.getTestContext().getLog(), resultAlloc.getHostPtr(), m_expectedValues)) in iterate()
690 const Allocation& resultAlloc = resultBuffer.getAllocation(); in iterate() local
691 invalidateAlloc(vk, device, resultAlloc); in iterate()
693 if (verifyValues(m_context.getTestContext().getLog(), resultAlloc.getHostPtr(), m_expectedValues)) in iterate()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageCompressionTranscodingSupport.cpp1292 const Allocation& resultAlloc = resultBuffer.getAllocation(); in decompressImage() local
1294 invalidateAlloc(vk, device, resultAlloc); in decompressImage()
1303 resultAlloc.getHostPtr(), in decompressImage()
1310 …decompressedImageInfo.extent.height, decompressedImageInfo.extent.depth, resultAlloc.getHostPtr()); in decompressImage()