Lines Matching defs:IntegerFunctionCase
160 // IntegerFunctionCase
162 class IntegerFunctionCase : public TestCase
165 IntegerFunctionCase (Context& context, const char* name, const char* description, glu::ShaderType shaderType);
166 ~IntegerFunctionCase (void);
173 IntegerFunctionCase (const IntegerFunctionCase& other);
174 IntegerFunctionCase& operator= (const IntegerFunctionCase& other);
189 IntegerFunctionCase::IntegerFunctionCase (Context& context, const char* name, const char* description, glu::ShaderType shaderType)
198 IntegerFunctionCase::~IntegerFunctionCase (void)
200 IntegerFunctionCase::deinit();
203 void IntegerFunctionCase::init (void)
214 void IntegerFunctionCase::deinit (void)
256 IntegerFunctionCase::IterateResult IntegerFunctionCase::iterate (void)
327 class UaddCarryCase : public IntegerFunctionCase
331 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "uaddCarry", shaderType)
423 class UsubBorrowCase : public IntegerFunctionCase
427 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "usubBorrow", shaderType)
517 class UmulExtendedCase : public IntegerFunctionCase
521 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "umulExtended", shaderType)
607 class ImulExtendedCase : public IntegerFunctionCase
611 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "imulExtended", shaderType)
698 class BitfieldExtractCase : public IntegerFunctionCase
702 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "bitfieldExtract", shaderType)
771 class BitfieldInsertCase : public IntegerFunctionCase
775 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "bitfieldInsert", shaderType)
848 class BitfieldReverseCase : public IntegerFunctionCase
852 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "bitfieldReverse", shaderType)
894 class BitCountCase : public IntegerFunctionCase
898 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "bitCount", shaderType)
954 class FindLSBCase : public IntegerFunctionCase
958 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "findLSB", shaderType)
1014 class FindMSBCase : public IntegerFunctionCase
1018 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "findMSB", shaderType)