Lines Matching refs:inputValues
157 std::vector<deUint32> inputValues (m_numValues);
162 for (int ndx = 0; ndx < (int)inputValues.size(); ndx++)
163 inputValues[ndx] = rnd.getUint32();
187 for (deUint32 ndx = 0; ndx < de::min(valueInfo.arraySize, (deUint32)inputValues.size()); ndx++)
188 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
219 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
223 const deUint32 ref = ~inputValues[ndx];
279 std::vector<deUint32> inputValues (m_numValues);
284 for (int ndx = 0; ndx < (int)inputValues.size(); ndx++)
285 inputValues[ndx] = rnd.getUint32();
306 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
311 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
312 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
342 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
346 const deUint32 ref = ~inputValues[ndx];
407 std::vector<deUint32> inputValues (m_numValues);
412 for (int ndx = 0; ndx < (int)inputValues.size(); ndx++)
413 inputValues[ndx] = rnd.getUint32();
430 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
431 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
446 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
449 const deUint32 ref = ~inputValues[ndx];
1041 vector<deUint32> inputValues (m_imageSize[0]*m_imageSize[1]);
1052 for (vector<deUint32>::iterator i = inputValues.begin(); i != inputValues.end(); ++i)
1058 gl.texSubImage2D(GL_TEXTURE_2D, 0, 0, 0, m_imageSize[0], m_imageSize[1], GL_RED_INTEGER, GL_UNSIGNED_INT, &inputValues[0]);
1090 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
1095 const deUint32 ref = inputValues[ndx];
1146 vector<deUint32> inputValues (m_imageSize[0]*m_imageSize[1]);
1157 for (vector<deUint32>::iterator i = inputValues.begin(); i != inputValues.end(); ++i)
1170 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
1175 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
1176 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
1201 vector<deUint32> pixels (inputValues.size()*4);
1212 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
1215 const deUint32 ref = inputValues[ndx];
1280 vector<deUint32> inputValues (m_imageSize[0]*m_imageSize[1]*m_localSize);
1291 for (vector<deUint32>::iterator i = inputValues.begin(); i != inputValues.end(); ++i)
1304 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
1309 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
1310 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
1346 for (int pixelNdx = 0; pixelNdx < (int)inputValues.size()/m_localSize; pixelNdx++)
1352 ref += inputValues[pixelNdx*m_localSize + offs];