Home | History | Annotate | Download | only in functional

Lines Matching refs:inputValues

152 		std::vector<deUint32>		inputValues		(m_numValues);
157 for (int ndx = 0; ndx < (int)inputValues.size(); ndx++)
158 inputValues[ndx] = rnd.getUint32();
182 for (deUint32 ndx = 0; ndx < de::min(valueInfo.arraySize, (deUint32)inputValues.size()); ndx++)
183 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
214 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
218 const deUint32 ref = ~inputValues[ndx];
272 std::vector<deUint32> inputValues (m_numValues);
277 for (int ndx = 0; ndx < (int)inputValues.size(); ndx++)
278 inputValues[ndx] = rnd.getUint32();
299 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
304 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
305 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
335 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
339 const deUint32 ref = ~inputValues[ndx];
398 std::vector<deUint32> inputValues (m_numValues);
403 for (int ndx = 0; ndx < (int)inputValues.size(); ndx++)
404 inputValues[ndx] = rnd.getUint32();
421 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
422 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
437 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
440 const deUint32 ref = ~inputValues[ndx];
1016 vector<deUint32> inputValues (m_imageSize[0]*m_imageSize[1]);
1027 for (vector<deUint32>::iterator i = inputValues.begin(); i != inputValues.end(); ++i)
1033 gl.texSubImage2D(GL_TEXTURE_2D, 0, 0, 0, m_imageSize[0], m_imageSize[1], GL_RED_INTEGER, GL_UNSIGNED_INT, &inputValues[0]);
1065 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
1070 const deUint32 ref = inputValues[ndx];
1120 vector<deUint32> inputValues (m_imageSize[0]*m_imageSize[1]);
1131 for (vector<deUint32>::iterator i = inputValues.begin(); i != inputValues.end(); ++i)
1144 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
1149 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
1150 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
1175 vector<deUint32> pixels (inputValues.size()*4);
1186 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
1189 const deUint32 ref = inputValues[ndx];
1247 vector<deUint32> inputValues (m_imageSize[0]*m_imageSize[1]*m_localSize);
1258 for (vector<deUint32>::iterator i = inputValues.begin(); i != inputValues.end(); ++i)
1271 TCU_CHECK(valueInfo.arraySize == (deUint32)inputValues.size());
1276 for (deUint32 ndx = 0; ndx < (deUint32)inputValues.size(); ndx++)
1277 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
1313 for (int pixelNdx = 0; pixelNdx < (int)inputValues.size()/m_localSize; pixelNdx++)
1319 ref += inputValues[pixelNdx*m_localSize + offs];