Searched refs:resultAlloc (Results 1 - 8 of 8) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationFractionalSpacingTests.cpp540 const Allocation& resultAlloc = resultBuffer.getAllocation();
541 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBufferSizeBytes);
543 const deInt32 numResults = *static_cast<deInt32*>(resultAlloc.getHostPtr());
544 const std::vector<float> resultTessCoords = readFloatArray(numResults, resultAlloc.getHostPtr(), sizeof(deInt32));
H A DvktTessellationPrimitiveDiscardTests.cpp568 const Allocation& resultAlloc = resultBuffer.getAllocation();
569 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBufferSizeBytes);
571 const deInt32 numResultVertices = *static_cast<deInt32*>(resultAlloc.getHostPtr());
H A DvktTessellationInvarianceTests.cpp670 const Allocation& resultAlloc = m_resultBuffer.getAllocation(); local
671 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), m_resultBufferSizeBytes);
677 result.numPrimitives = *static_cast<deInt32*>(resultAlloc.getHostPtr());
678 result.primitives = sorted(readInterleavedData<PerPrimitive>(result.numPrimitives, resultAlloc.getHostPtr(), m_resultBufferPrimitiveDataOffset, sizeof(PerPrimitive)),
1463 const Allocation& resultAlloc = resultBuffer.getAllocation();
1464 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBufferSizeBytes);
1468 const deInt32 numPrimitives = *static_cast<deInt32*>(resultAlloc.getHostPtr());
1469 const PerPrimitiveVec primitives = sorted(readInterleavedData<PerPrimitive>(numPrimitives, resultAlloc
[all...]
H A DvktTessellationCoordinatesTests.cpp591 const Allocation& resultAlloc = resultBuffer.getAllocation();
592 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBufferSizeBytes);
594 const deInt32 numResults = *static_cast<deInt32*>(resultAlloc.getHostPtr());
595 const std::vector<tcu::Vec3> resultTessCoords = readInterleavedData<tcu::Vec3>(numResults, resultAlloc.getHostPtr(), resultBufferTessCoordsOffset, sizeof(tcu::Vec4));
H A DvktTessellationUserDefinedIO.cpp922 const Allocation& resultAlloc = resultBuffer.getAllocation(); local
923 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBufferSizeBytes);
925 const deInt32 numVertices = *static_cast<deInt32*>(resultAlloc.getHostPtr());
926 const deUint32* const vertices = reinterpret_cast<deUint32*>(static_cast<deUint8*>(resultAlloc.getHostPtr()) + sizeof(deInt32));
/external/deqp/external/vulkancts/modules/vulkan/compute/
H A DvktComputeShaderBuiltinVarTests.cpp477 const Allocation& resultAlloc = resultBuffer.getAllocation(); local
478 invalidateMappedMemoryRange(m_vki, m_device, resultAlloc.getMemory(), resultAlloc.getOffset(), resultBufferSize);
480 const deUint8* ptr = reinterpret_cast<deUint8*>(resultAlloc.getHostPtr());
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationInternallySynchronizedObjectsTests.cpp378 const Allocation& resultAlloc = resultBuffer.getAllocation(); local
379 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), BUFFER_SIZE);
381 const deInt32* ptr = reinterpret_cast<deInt32*>(resultAlloc.getHostPtr());
476 const Allocation& resultAlloc = resultBuffer.getAllocation(); local
477 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), BUFFER_SIZE);
479 const deInt32* ptr = reinterpret_cast<deInt32*>(resultAlloc.getHostPtr());
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineSpecConstantTests.cpp524 const Allocation& resultAlloc = resultBuffer.getAllocation(); local
525 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), m_ssboSize);
527 if (verifyValues(m_context.getTestContext().getLog(), resultAlloc.getHostPtr(), m_expectedValues))
690 const Allocation& resultAlloc = resultBuffer.getAllocation(); local
691 invalidateMappedMemoryRange(vk, device, resultAlloc.getMemory(), resultAlloc.getOffset(), m_ssboSize);
693 if (verifyValues(m_context.getTestContext().getLog(), resultAlloc.getHostPtr(), m_expectedValues))

Completed in 1053 milliseconds