Lines Matching defs:combNdx

1959 	for (int combNdx = 0; combNdx < numCombinations; ++combNdx)
1963 sum += (i == combNdx ? specValue : dataType == glu::TYPE_BOOL ? 1 : (i + 1));
1966 expectedValues.push_back(OffsetValue(dataSize, dataSize * combNdx, makeValue(dataType, sum)));
1989 for (int combNdx = 0; combNdx < numCombinations; ++combNdx)
1990 mainCode << " "<< accumType << " sum_" << varName << combNdx << " = " << accumType << "(0);\n";
1999 for (int combNdx = 0; combNdx < numCombinations; ++combNdx)
2000 mainCode << " sum_" << varName << combNdx << " += " << accumType << "("
2001 << varName << combNdx << "[i][j]" << getFirstDataElementSubscriptString(elemType) << ");\n";
2009 for (int combNdx = 0; combNdx < numCombinations; ++combNdx)
2010 mainCode << " sum_" << varName << combNdx << " += " << accumType << "("
2011 << varName << combNdx << "[i]" << getFirstDataElementSubscriptString(elemType) << ");\n";
2017 for (int combNdx = 0; combNdx < numCombinations; ++combNdx)
2018 mainCode << " sb_out.result[" << combNdx << "] = sum_" << varName << combNdx << ";\n";
2053 for (int combNdx = 0; combNdx < numCombinations; ++combNdx)
2054 globalCode << ( isConst ? "const " : "" ) << typeName << " " << varName << combNdx << " = " << typeName << "("
2055 << generateInitializerListWithSpecConstant(type, false, 0, numCombinations, "sc0", combNdx) << ");\n";
2098 for (int combNdx = 0; combNdx < numCombinations; ++combNdx)
2099 globalCode << elemTypeName << " " << varName << combNdx << arraySizeDecl << " = "
2100 << elemTypeName << arraySizeDecl << "(" << generateArrayConstructorString(elemType, size1, size2, "sc0", combNdx) << ");\n";