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) {}
1171 " mediump vec4 value = a_value${NAME_SPEC};\n";
1179 resultTemplate += string(nestingDepth + 1, '\t') + "value *= a_value${NAME_SPEC};\n";
1182 " v_value${NAME_SPEC} = value;\n";
1237 " mediump vec4 value = v_value${NAME_SPEC};\n";
1245 resultTemplate += string(nestingDepth + 1, '\t') + "value *= v_value${NAME_SPEC};\n";
1248 " gl_FragColor = value + ${FLOAT01};\n";
1304 // Function for generating the shader attributes for a case with only one attribute value in addition to the position attribute.
1337 " mediump vec4 value = ";
1344 " v_value${NAME_SPEC} = value;\n"
1362 " mediump vec4 value = ";
1369 " gl_FragColor = value + ${FLOAT01};\n"
1745 gl.vertexAttribPointer(location, 4, GL_FLOAT, GL_FALSE, 0, progCtx.vertexAttributes[attribNdx].value.getPtr());
1756 const float* floatPtr = progCtx.uniforms[uniformNdx].value.getPtr();
2074 log << TestLog::Message << "\nWARNING: couldn't achieve relative median absolute deviation under threshold value "
2602 log << TestLog::Message << "\nWARNING: couldn't achieve relative median absolute deviation under threshold value " << RELATIVE_MEDIAN_ABSOLUTE_DEVIATION_THRESHOLD << TestLog::EndMessage;