Searched defs:rowNdx (Results 1 - 2 of 2) sorted by relevance

/external/deqp/framework/common/
H A DtcuMatrix.hpp58 void setRow (int rowNdx, const Vector<T, Cols>& vec);
379 void Matrix<T, Rows, Cols>::setRow (int rowNdx, const Vector<T, Cols>& vec) argument
382 (*this)(rowNdx, col) = vec.m_data[col];
392 Vector<T, Cols> Matrix<T, Rows, Cols>::getRow (int rowNdx) const
396 res[col] = (*this)(rowNdx, col);
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineVertexInputTests.cpp562 for (int rowNdx = 0; rowNdx < componentCount; rowNdx++)
573 accessStream << "[" << rowNdx << "]"; local
577 accessStream << "[" << columnNdx << "][" << rowNdx << "]"; local
595 glslCode << "\tif (abs(" << accessStr << " + double(0.01 * (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0))) < double(" << threshold[rowNdx] << "))\n";
599 glslCode << "\tif (abs(" << accessStr << " + (0.01 * (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0))) < " << threshold[rowNdx] << ")\n";
604 glslCode << "\tif (abs(" << accessStr << " + (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0)) < " << threshold[rowNdx] << ")\n";
608 glslCode << "\t if (abs(" << accessStr << " - (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0)) < " << threshold[rowNdx] << ")\n";
614 glslCode << "\tif (abs(" << accessStr << " - (-1.0 + " << representableDiff << " * (" << totalComponentCount << ".0 * float(" << indexId << ") + " << componentIndex << ".0))) < " << threshold[rowNdx] << ")\
[all...]

Completed in 391 milliseconds