Lines Matching refs:CommonSubexpressionCase
538 class CommonSubexpressionCase : public ShaderOptimizationCase class
551 …CommonSubexpressionCase (Context& context, const char* name, const char* description, CaseShaderTy… in CommonSubexpressionCase() function in deqp::gles3::Performance::__anon78e67cbd0111::CommonSubexpressionCase
970 for (int caseTypeI = 0; caseTypeI < CommonSubexpressionCase::CASETYPE_LAST; caseTypeI++) in init()
972 … const CommonSubexpressionCase::CaseType caseType = (CommonSubexpressionCase::CaseType)caseTypeI; in init()
974 …const string caseTypeName = caseType == CommonSubexpressionCase::CASETYPE_SINGLE_STATEMENT … in init()
975 … : caseType == CommonSubexpressionCase::CASETYPE_MULTIPLE_STATEMENTS ? "multiple_statements" in init()
976 : caseType == CommonSubexpressionCase::CASETYPE_STATIC_BRANCH ? "static_branch" in init()
977 : caseType == CommonSubexpressionCase::CASETYPE_LOOP ? "loop" in init()
980 …const string description = caseType == CommonSubexpressionCase::CASETYPE_SINGLE_STATEMENT … in init()
981 …: caseType == CommonSubexpressionCase::CASETYPE_MULTIPLE_STATEMENTS ? "Multiple statements perfor… in init()
982 …: caseType == CommonSubexpressionCase::CASETYPE_STATIC_BRANCH ? "Multiple statements including a… in init()
983 …: caseType == CommonSubexpressionCase::CASETYPE_LOOP ? "Multiple loops performing the same com… in init()
986 …commonSubexpressionGroup->addChild(new CommonSubexpressionCase(m_context, (caseTypeName + caseShad… in init()