Lines Matching defs:value

82 inline string toStringWithPadding (T value, int minLength)
85 s << std::setfill('0') << std::setw(minLength) << value;
365 tcu::Vector<float, 16> value;
367 AttribSpec (const string& n, const tcu::Vector<float, 16>& v) : name(n), value(v) {}
389 tcu::Vector<float, 16> value;
391 UniformSpec (const string& n, Type t, float v) : name(n), type(t), value(v) {}
392 UniformSpec (const string& n, Type t, const tcu::Vector<float, 16>& v) : name(n), type(t), value(v) {}
1177 " mediump vec4 value = a_value${NAME_SPEC};\n";
1185 resultTemplate += string(nestingDepth + 1, '\t') + "value *= a_value${NAME_SPEC};\n";
1188 " v_value${NAME_SPEC} = value;\n";
1245 " mediump vec4 value = v_value${NAME_SPEC};\n";
1253 resultTemplate += string(nestingDepth + 1, '\t') + "value *= v_value${NAME_SPEC};\n";
1256 " o_color = value + ${FLOAT01};\n";
1312 // Function for generating the shader attributes for a case with only one attribute value in addition to the position attribute.
1346 " mediump vec4 value = ";
1353 " v_value${NAME_SPEC} = value;\n"
1373 " mediump vec4 value = ";
1380 " o_color = value + ${FLOAT01};\n"
1765 gl.vertexAttribPointer(location, 4, GL_FLOAT, GL_FALSE, 0, progCtx.vertexAttributes[attribNdx].value.getPtr());
1776 const float* floatPtr = progCtx.uniforms[uniformNdx].value.getPtr();
2094 log << TestLog::Message << "\nWARNING: couldn't achieve relative median absolute deviation under threshold value "
2622 log << TestLog::Message << "\nWARNING: couldn't achieve relative median absolute deviation under threshold value " << RELATIVE_MEDIAN_ABSOLUTE_DEVIATION_THRESHOLD << TestLog::EndMessage;