Lines Matching refs:CommonSubexpressionCase
527 class CommonSubexpressionCase : public ShaderOptimizationCase class
540 …CommonSubexpressionCase (Context& context, const char* name, const char* description, CaseShaderTy… in CommonSubexpressionCase() function in deqp::gles2::Performance::__anonf46dc3bb0111::CommonSubexpressionCase
962 for (int caseTypeI = 0; caseTypeI < CommonSubexpressionCase::CASETYPE_LAST; caseTypeI++) in init()
964 … const CommonSubexpressionCase::CaseType caseType = (CommonSubexpressionCase::CaseType)caseTypeI; in init()
966 …const string caseTypeName = caseType == CommonSubexpressionCase::CASETYPE_SINGLE_STATEMENT … in init()
967 … : caseType == CommonSubexpressionCase::CASETYPE_MULTIPLE_STATEMENTS ? "multiple_statements" in init()
968 : caseType == CommonSubexpressionCase::CASETYPE_STATIC_BRANCH ? "static_branch" in init()
969 : caseType == CommonSubexpressionCase::CASETYPE_LOOP ? "loop" in init()
972 …const string description = caseType == CommonSubexpressionCase::CASETYPE_SINGLE_STATEMENT … in init()
973 …: caseType == CommonSubexpressionCase::CASETYPE_MULTIPLE_STATEMENTS ? "Multiple statements perfor… in init()
974 …: caseType == CommonSubexpressionCase::CASETYPE_STATIC_BRANCH ? "Multiple statements including a… in init()
975 …: caseType == CommonSubexpressionCase::CASETYPE_LOOP ? "Multiple loops performing the same com… in init()
978 …commonSubexpressionGroup->addChild(new CommonSubexpressionCase(m_context, (caseTypeName + caseShad… in init()