Lines Matching refs:data
734 // Check data sizes, throw unsupported if the case cannot be tested.
916 deInt32 data = 0u;
921 data = (properties.limits.maxVertexOutputComponents / 4) - 1; // outputData + gl_Position
926 data = properties.limits.maxTessellationEvaluationInputComponents / 4;
928 data = (properties.limits.maxTessellationEvaluationOutputComponents / 4) - 1; // outputData + gl_Position
933 data = properties.limits.maxGeometryInputComponents / 4;
935 data = (properties.limits.maxGeometryOutputComponents / 4) - 1; // outputData + gl_Position
940 data = (properties.limits.maxFragmentInputComponents / 4); // inputData
946 return data;
983 deMemcpy(vertexBufferMemory->getHostPtr(), vertices.data(), vertices.size() * sizeof(tcu::Vec4));
993 deInt32 data = 0u;
994 size_t dataSize = sizeof(data);
999 data = deMin32(maxOutput, maxInput);
1001 DE_ASSERT(data != 0u);
1003 log << tcu::TestLog::Message << "Testing " << data * 4 << " input components for stage " << getShaderStageName(param.stageToStressIO).c_str() << tcu::TestLog::EndMessage;
1017 &data // const void* pData;