Lines Matching defs:data

440 //! Computes the result of an atomic operation where "a" is the data operated on and "b" is the parameter to the atomic function.
815 vector<UVec4> data(dst.getWidth()*dst.getHeight());
817 glLog.glReadPixels(originX, originY, dst.getWidth(), dst.getHeight(), GL_RGBA_INTEGER, GL_UNSIGNED_INT, &data[0]);
821 dst.setPixel(data[y*dst.getWidth() + x], x, y);
825 vector<IVec4> data(dst.getWidth()*dst.getHeight());
827 glLog.glReadPixels(originX, originY, dst.getWidth(), dst.getHeight(), GL_RGBA_INTEGER, GL_INT, &data[0]);
831 dst.setPixel(data[y*dst.getWidth() + x], x, y);
987 log << TestLog::Message << "// Got buffer data size = " << blockSize << TestLog::EndMessage;
1365 void *const data = sliceAccess.getDataPtr();
1370 void *const pixelData = (deUint8*)data + y*rowPitch + x*pixelSize;
1414 // First, fill reference with (a fairly arbitrary) initial pattern. This will be used as texture upload source data as well as for actual reference computation later on.
1535 // Format re-interpretation case. Read data with image format and write back, with the same image format.
1536 // We do this because the data may change a little during lookups (e.g. unorm8 -> float; not all unorms can be exactly represented as floats).
1546 void *const data = sliceAccess.getDataPtr();
1551 void *const pixelData = (deUint8*)data + y*rowPitch + x*pixelSize;
1787 << TestLog::Message << "// Note: data expression values for the IDs are " << arrayStr(atomicArgs) << TestLog::EndMessage
1915 << TestLog::Message << "// Note: data expression values for the IDs are "
2270 << " (those are the values given as the 'data' argument in the invocations that contribute to this pixel)"
2509 " " + colorScalarTypeName + " data = " + colorScalarTypeName + getAssignArgShaderStr("gx", "gy", "gz", imageSize.x()) + ";\n"
2511 " status = imageAtomicCompSwap(u_results, " + atomicCoord + ", compare, data);\n"