HomeSort by relevance Sort by last modified time
    Searched refs:randomScalar (Results 1 - 6 of 6) sorted by null

  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmGraphicsShaderTestUtil.hpp 326 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
327 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
328 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
vktSpvAsmVariablePointersTests.cpp 86 typedPtr[offset + ndx] = randomScalar<T>(rnd, minValue, maxValue);
    [all...]
vktSpvAsmInstructionTests.cpp 92 typedPtr[offset + ndx] = randomScalar<T>(rnd, minValue, maxValue);
104 value = randomScalar<T>(rnd, minValue, maxValue);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 68 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
69 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
70 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
71 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); }
78 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
95 typedPtr[offset + ndx] = randomScalar<T>(rnd, minValue, maxValue);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 72 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
73 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
74 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
75 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); }
82 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
99 typedPtr[offset + ndx] = randomScalar<T>(rnd, minValue, maxValue);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderCommonFunctionTests.cpp 77 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
78 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); }
79 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); }
86 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
103 typedPtr[offset + ndx] = randomScalar<T>(rnd, minValue, maxValue);
    [all...]

Completed in 124 milliseconds