Lines Matching refs:value
403 const tcu::Vec4 value = tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f);
404 deMemcpy(m_uniformBufferAlloc->getHostPtr(), &value, 16u);
792 const void* value = DE_NULL;
796 value = (m_pushConstantRange[rangeNdx].range.size == 4u) ? (void*)(&kind) : (void*)(&color[0]);
798 vk.cmdPushConstants(cmdBuffer, pipelineLayout, m_pushConstantRange[rangeNdx].range.shaderStage, m_pushConstantRange[rangeNdx].range.offset, m_pushConstantRange[rangeNdx].range.size, value);
802 value = (void*)(&allOnes[0]);
803 vk.cmdPushConstants(cmdBuffer, pipelineLayout, m_pushConstantRange[rangeNdx].range.shaderStage, m_pushConstantRange[rangeNdx].update.offset, m_pushConstantRange[rangeNdx].update.size, value);
1267 // Use the dynamic index to pull our real index value from push constants
1268 // Then use that value to index into three variable types
1414 // Use the dynamic index to pull our real index value from push constants
1415 // Then use that value to index into three variable types
1917 tcu::Vec4 value = tcu::Vec4(1.0f, 0.0f, 0.0f, 1.0f);
1918 vk.cmdPushConstants(*m_cmdBuffer, *m_pipelineLayout, m_pushConstantRange.range.shaderStage, m_pushConstantRange.range.offset, m_pushConstantRange.range.size, &value);
1954 // The test should run without crashing when reading that undefined value.
1955 // The actual value is not important, test just shouldn't crash.
2490 // Set push constant value
2491 tcu::Vec4 value[2] =
2519 &value);
2684 return tcu::TestStatus::fail("Wrong output value");
3030 msg << "Unexpected value in output image at coords " << pc.coords << ": found " << outputValue << " and expected " << expectedValue;