Home
last modified time | relevance | path

Searched refs:addFunctionCases (Results 1 – 6 of 6) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fShaderUniformIntegerFunctionTests.cpp235 static void addFunctionCases (TestCaseGroup* parent, const char* functionName, int input) in addFunctionCases() function
258 addFunctionCases<FindMSBEdgeCase>(this, "findMSBZero", 0); in init()
259 addFunctionCases<FindMSBEdgeCase>(this, "findMSBMinusOne", -1); in init()
260 addFunctionCases<FindLSBEdgeCase>(this, "findLSBZero", 0); in init()
261 addFunctionCases<FindLSBEdgeCase>(this, "findLSBMinusOne", -1); in init()
Des31fShaderIntegerFunctionTests.cpp1110 static void addFunctionCases (TestCaseGroup* parent, const char* functionName, bool intTypes, bool … in addFunctionCases() function
1160 addFunctionCases<UaddCarryCase> (this, "uaddcarry", false, true, true, ALL_SHADERS); in init()
1161 addFunctionCases<UsubBorrowCase> (this, "usubborrow", false, true, true, ALL_SHADERS); in init()
1162 addFunctionCases<UmulExtendedCase> (this, "umulextended", false, true, false, ALL_SHADERS); in init()
1163 addFunctionCases<ImulExtendedCase> (this, "imulextended", true, false, false, ALL_SHADERS); in init()
1164 addFunctionCases<BitfieldExtractCase> (this, "bitfieldextract", true, true, true, ALL_SHADERS); in init()
1165 addFunctionCases<BitfieldInsertCase> (this, "bitfieldinsert", true, true, true, ALL_SHADERS); in init()
1166 addFunctionCases<BitfieldReverseCase> (this, "bitfieldreverse", true, true, true, ALL_SHADERS); in init()
1167 addFunctionCases<BitCountCase> (this, "bitcount", true, true, true, ALL_SHADERS); in init()
1168 addFunctionCases<FindLSBCase> (this, "findlsb", true, true, true, ALL_SHADERS); in init()
[all …]
Des31fShaderCommonFunctionTests.cpp2121 static void addFunctionCases (TestCaseGroup* parent, const char* functionName, bool floatTypes, boo… in addFunctionCases() function
2172 addFunctionCases<AbsCase> (this, "abs", true, true, false, NEW_SHADERS); in init()
2173 addFunctionCases<SignCase> (this, "sign", true, true, false, NEW_SHADERS); in init()
2174 addFunctionCases<FloorCase> (this, "floor", true, false, false, NEW_SHADERS); in init()
2175 addFunctionCases<TruncCase> (this, "trunc", true, false, false, NEW_SHADERS); in init()
2176 addFunctionCases<RoundCase> (this, "round", true, false, false, NEW_SHADERS); in init()
2177 addFunctionCases<RoundEvenCase> (this, "roundeven", true, false, false, NEW_SHADERS); in init()
2178 addFunctionCases<CeilCase> (this, "ceil", true, false, false, NEW_SHADERS); in init()
2179 addFunctionCases<FractCase> (this, "fract", true, false, false, NEW_SHADERS); in init()
2181 addFunctionCases<ModfCase> (this, "modf", true, false, false, NEW_SHADERS); in init()
[all …]
/external/deqp/modules/gles3/functional/
Des3fShaderCommonFunctionTests.cpp1633 static void addFunctionCases (TestCaseGroup* parent, const char* functionName, bool floatTypes, boo… in addFunctionCases() function
1668 addFunctionCases<AbsCase> (this, "abs", true, true, false); in init()
1669 addFunctionCases<SignCase> (this, "sign", true, true, false); in init()
1670 addFunctionCases<FloorCase> (this, "floor", true, false, false); in init()
1671 addFunctionCases<TruncCase> (this, "trunc", true, false, false); in init()
1672 addFunctionCases<RoundCase> (this, "round", true, false, false); in init()
1673 addFunctionCases<RoundEvenCase> (this, "roundeven", true, false, false); in init()
1674 addFunctionCases<CeilCase> (this, "ceil", true, false, false); in init()
1675 addFunctionCases<FractCase> (this, "fract", true, false, false); in init()
1677 addFunctionCases<ModfCase> (this, "modf", true, false, false); in init()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderIntegerFunctionTests.cpp277 static void addFunctionCases (tcu::TestCaseGroup* parent, const char* functionName, bool intTypes, … in addFunctionCases() function
1313 addFunctionCases<UaddCarryCase> (this, "uaddcarry", false, true, true, ALL_SHADERS); in init()
1314 addFunctionCases<UsubBorrowCase> (this, "usubborrow", false, true, true, ALL_SHADERS); in init()
1315 addFunctionCases<UmulExtendedCase> (this, "umulextended", false, true, false, ALL_SHADERS); in init()
1316 addFunctionCases<ImulExtendedCase> (this, "imulextended", true, false, false, ALL_SHADERS); in init()
1317 addFunctionCases<BitfieldExtractCase> (this, "bitfieldextract", true, true, true, ALL_SHADERS); in init()
1318 addFunctionCases<BitfieldInsertCase> (this, "bitfieldinsert", true, true, true, ALL_SHADERS); in init()
1319 addFunctionCases<BitfieldReverseCase> (this, "bitfieldreverse", true, true, true, ALL_SHADERS); in init()
1320 addFunctionCases<BitCountCase> (this, "bitcount", true, true, true, ALL_SHADERS); in init()
1321 addFunctionCases<FindLSBCase> (this, "findlsb", true, true, true, ALL_SHADERS); in init()
[all …]
DvktShaderCommonFunctionTests.cpp406 static void addFunctionCases (tcu::TestCaseGroup* parent, const char* functionName, bool floatTypes… in addFunctionCases() function
2418 addFunctionCases<AbsCase> (this, "abs", true, true, false, ALL_SHADERS); in init()
2419 addFunctionCases<SignCase> (this, "sign", true, true, false, ALL_SHADERS); in init()
2420 addFunctionCases<FloorCase> (this, "floor", true, false, false, ALL_SHADERS); in init()
2421 addFunctionCases<TruncCase> (this, "trunc", true, false, false, ALL_SHADERS); in init()
2422 addFunctionCases<RoundCase> (this, "round", true, false, false, ALL_SHADERS); in init()
2423 addFunctionCases<RoundEvenCase> (this, "roundeven", true, false, false, ALL_SHADERS); in init()
2424 addFunctionCases<CeilCase> (this, "ceil", true, false, false, ALL_SHADERS); in init()
2425 addFunctionCases<FractCase> (this, "fract", true, false, false, ALL_SHADERS); in init()
2427 addFunctionCases<ModfCase> (this, "modf", true, false, false, ALL_SHADERS); in init()
[all …]