Lines Matching refs:resultAlloc
689 const Allocation& resultAlloc = m_resultBuffer.getAllocation();
691 invalidateAlloc(vk, device, resultAlloc);
697 result.numPrimitives = *static_cast<deInt32*>(resultAlloc.getHostPtr());
698 result.primitives = sorted(readInterleavedData<PerPrimitive>(result.numPrimitives, resultAlloc.getHostPtr(), m_resultBufferPrimitiveDataOffset, sizeof(PerPrimitive)),
1518 const Allocation& resultAlloc = resultBuffer.getAllocation();
1520 invalidateAlloc(vk, device, resultAlloc);
1524 const deInt32 numPrimitives = *static_cast<deInt32*>(resultAlloc.getHostPtr());
1525 const PerPrimitiveVec primitives = sorted(readInterleavedData<PerPrimitive>(numPrimitives, resultAlloc.getHostPtr(),
2160 const Allocation& resultAlloc = resultBuffer.getAllocation();
2162 invalidateAlloc(vk, device, resultAlloc);
2164 const deInt32 numVertices = *static_cast<deInt32*>(resultAlloc.getHostPtr());
2165 const std::vector<tcu::Vec3> vertices = readInterleavedData<tcu::Vec3>(numVertices, resultAlloc.getHostPtr(), resultBufferTessCoordsOffset, sizeof(tcu::Vec4));