• Home
  • Raw
  • Download

Lines Matching refs:numComponents

549 static string genFetch(const CaseDef &caseDef, int numComponents, const string& vecType, const stri…  in genFetch()  argument
558 for (int i = numComponents; i < 4; ++i) s << ", 0"; in genFetch()
564 for (int i = numComponents; i < 4; ++i) s << ", 0"; in genFetch()
593 static string getStoreValue(int descriptorType, int numComponents, const string& vecType, const str… in getStoreValue() argument
601 for (int i = numComponents; i < 4; ++i) s << ", 0"; in getStoreValue()
898 …int numComponents = tcu::getPixelSize(mapVkFormat(format)) / tcu::getChannelSize(mapVkFormat(forma… in initPrograms() local
900 if (numComponents == 1) in initPrograms()
903 bufType = imgprefix + "vec" + std::to_string(numComponents); in initPrograms()
934 …checks << " int idx = smod(gl_VertexIndex * " << numComponents << ", " << refDataNumElements <<… in initPrograms()
936 checks << " int idx = smod(c * " << numComponents << ", " << refDataNumElements << ");\n"; in initPrograms()
1019 if (numComponents == 1) in initPrograms()
1023 else if (numComponents == 2) in initPrograms()
1066 if (numComponents > 1) in initPrograms()
1074 if (numComponents > 2) in initPrograms()
1092 checks << " int paddedinboundcoords = " << refDataNumElements / numComponents << ";\n"; in initPrograms()
1099 …Data.size() / (formatIsR64(format) ? sizeof(deUint64) : sizeof(deUint32)) / numComponents << ";\n"; in initPrograms()
1166 checks << " temp = " << genFetch(m_data, numComponents, vecType, coord, "0") << ";\n"; in initPrograms()
1177 checks << " temp = " << genFetch(m_data, numComponents, vecType, coord, "0") << ";\n"; in initPrograms()
1190 if (m_data.formatQualifier && numComponents < 4) in initPrograms()
1211 …t mod = (int)((len / (formatIsR64(format) ? sizeof(deUint64) : sizeof(deUint32))) % numComponents); in initPrograms()
1253 numComponents < 4) in initPrograms()
1258 …checks << " else if (temp == " << getStoreValue(m_data.descriptorType, numComponents, vecType, … in initPrograms()
1277 …checks << " if (c != 0) temp = " << genFetch(m_data, numComponents, vecType, coord0, "c") << ";… in initPrograms()
1677 int numComponents = formatBytes / tcu::getChannelSize(mapVkFormat(m_data.format).type); in iterate() local
2811 if (((float *)ptr)[i * numComponents] != 1.0f) in iterate()
2818 if (((deUint64 *)ptr)[i * numComponents] != 1) in iterate()
2825 if (((deUint32 *)ptr)[i * numComponents] != 1) in iterate()