Lines Matching refs:numComponents
768 static string genFetch(const CaseDef &caseDef, int numComponents, const string& vecType, const stri… in genFetch() argument
777 for (int i = numComponents; i < 4; ++i) s << ", 0"; in genFetch()
783 for (int i = numComponents; i < 4; ++i) s << ", 0"; in genFetch()
812 static string getStoreValue(int descriptorType, int numComponents, const string& vecType, const str… in getStoreValue() argument
820 for (int i = numComponents; i < 4; ++i) s << ", 0"; in getStoreValue()
1120 …int numComponents = tcu::getPixelSize(mapVkFormat(format)) / tcu::getChannelSize(mapVkFormat(forma… in initPrograms() local
1122 if (numComponents == 1) in initPrograms()
1125 bufType = imgprefix + "vec" + std::to_string(numComponents); in initPrograms()
1156 …checks << " int idx = smod(gl_VertexIndex * " << numComponents << ", " << refDataNumElements <<… in initPrograms()
1158 checks << " int idx = smod(c * " << numComponents << ", " << refDataNumElements << ");\n"; in initPrograms()
1241 if (numComponents == 1) in initPrograms()
1245 else if (numComponents == 2) in initPrograms()
1288 if (numComponents > 1) in initPrograms()
1296 if (numComponents > 2) in initPrograms()
1314 checks << " int paddedinboundcoords = " << refDataNumElements / numComponents << ";\n"; in initPrograms()
1321 …Data.size() / (formatIsR64(format) ? sizeof(deUint64) : sizeof(deUint32)) / numComponents << ";\n"; in initPrograms()
1388 checks << " temp = " << genFetch(m_data, numComponents, vecType, coord, "0") << ";\n"; in initPrograms()
1399 checks << " temp = " << genFetch(m_data, numComponents, vecType, coord, "0") << ";\n"; in initPrograms()
1412 if (m_data.formatQualifier && numComponents < 4) in initPrograms()
1433 …t mod = (int)((len / (formatIsR64(format) ? sizeof(deUint64) : sizeof(deUint32))) % numComponents); in initPrograms()
1475 numComponents < 4) in initPrograms()
1480 …checks << " else if (temp == " << getStoreValue(m_data.descriptorType, numComponents, vecType, … in initPrograms()
1499 …checks << " if (c != 0) temp = " << genFetch(m_data, numComponents, vecType, coord0, "c") << ";… in initPrograms()
1878 int numComponents = formatBytes / tcu::getChannelSize(mapVkFormat(m_data.format).type); in iterate() local
3059 if (((float *)ptr)[i * numComponents] != 1.0f) in iterate()
3066 if (((deUint64 *)ptr)[i * numComponents] != 1) in iterate()
3073 if (((deUint32 *)ptr)[i * numComponents] != 1) in iterate()