HomeSort by relevance Sort by last modified time
    Searched refs:deUint8 (Results 76 - 100 of 192) sorted by null

1 2 34 5 6 7 8

  /external/deqp/framework/qphelper/
qpXmlWriter.h 149 deBool qpXmlWriter_writeBase64 (qpXmlWriter* writer, const deUint8* data, int numBytes);
  /external/deqp/framework/referencerenderer/
rrRenderer.hpp 78 DrawIndices (const deUint8*, int baseVertex = 0);
rrVertexAttrib.cpp 285 case VERTEXATTRIBTYPE_NONPURE_UNORM8: readUnorm<deUint8> (dst, size, ptr); break;
297 case VERTEXATTRIBTYPE_NONPURE_UINT8: read<deUint8> (dst, size, ptr); break;
305 case VERTEXATTRIBTYPE_NONPURE_UNORM8_BGRA: readUnormBGRA<deUint8> (dst, size, ptr); break;
373 case VERTEXATTRIBTYPE_PURE_UINT8: read<deUint8> (dst, size, ptr); break;
500 readFloat(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset);
520 readInt(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset);
540 readUint(dst, vertexAttrib.type, vertexAttrib.size, (const deUint8*)vertexAttrib.pointer + byteOffset);
  /external/deqp/execserver/
xsExecutionServer.cpp 49 const deUint8* MessageBuilder::getMessageData (void) const
260 void ExecutionRequestHandler::processMessage (MessageType type, const deUint8* data, int dataSize)
334 vector<deUint8> buf;
xsPosixTestProcess.cpp 123 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE);
314 int PosixTestProcess::readTestLog (deUint8* dst, int numBytes)
  /external/deqp/modules/gles31/functional/
es31fIndirectComputeDispatchTests.cpp 185 vector<deUint8> data (m_bufferSize);
268 vector<deUint8> data (resultBufferSize);
272 deUint8* const dstPtr = &data[resultBlockSize*cmdNdx];
313 const deUint8* const srcPtr = (const deUint8*)mapPtr + cmdNdx*resultBlockSize;
es31fSSBOLayoutCase.cpp 750 deUint8* const topElemPtr = (deUint8*)basePtr + entry.offset + topElemNdx*topLevelStride;
754 deUint8* const elemPtr = topElemPtr + elemNdx*arrayStride;
758 deUint8* const vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0);
762 deUint8* const compPtr = vecPtr + compSize*compNdx;
994 const deUint8* compPtr = (const deUint8*)valuePtr + (isRowMajor ? rowNdx*matrixStride + colNdx*compSize
    [all...]
es31fBasicComputeShaderTests.cpp 183 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
217 const deUint32 res = *((const deUint32*)((const deUint8*)bufMap.getPtr() + valueInfo.offset + valueInfo.arrayStride*ndx));
305 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
338 const deUint32 res = *((const deUint32*)((const deUint8*)bufMap.getPtr() + valueInfo.offset + valueInfo.arrayStride*ndx));
422 *(deUint32*)((deUint8*)bufMap.getPtr() + valueInfo.offset + ndx*valueInfo.arrayStride) = inputValues[ndx];
439 const deUint32 res = *((const deUint32*)((const deUint8*)bufMap.getPtr() + valueInfo.offset + valueInfo.arrayStride*ndx));
553 const deUint32 res = *((const deUint32*)((const deUint8*)bufMap.getPtr() + value0Info.offset + value0Info.arrayStride*ndx));
566 const deUint32 res = *((const deUint32*)((const deUint8*)bufMap.getPtr() + value1Info.offset + value1Info.arrayStride*ndx));
662 const deUint32 res = *((const deUint32*)((const deUint8*)bufMap.getPtr() + valueInfo.offset + valueInfo.arrayStride*(globalOffs + localOffs)));
777 const deUint32 res = *((const deUint32*)((const deUint8*)bufMap.getPtr() + valueInfo.offset))
    [all...]
  /external/deqp/framework/common/
tcuTextureUtil.cpp 120 (const deUint8*)access.getDataPtr() + access.getFormat().getPixelSize()*x + access.getRowPitch()*y + access.getSlicePitch()*z);
140 (deUint8*)access.getDataPtr() + access.getFormat().getPixelSize()*x + access.getRowPitch()*y + access.getSlicePitch()*z);
182 -rowPitch, access.getSlicePitch(), (deUint8*)access.getDataPtr() + offsetToLast);
196 -rowPitch, access.getSlicePitch(), (const deUint8*)access.getDataPtr() + offsetToLast);
443 inline void fillRow (const PixelBufferAccess& dst, int y, int z, int pixelSize, const deUint8* pixel)
445 deUint8* dstPtr = (deUint8*)dst.getDataPtr() + z*dst.getSlicePitch() + y*dst.getRowPitch();
481 deUint8 u8[CLEAR_OPTIMIZE_MAX_PIXEL_SIZE];
509 deUint8 u8[CLEAR_OPTIMIZE_MAX_PIXEL_SIZE];
537 deUint8 u8[CLEAR_OPTIMIZE_MAX_PIXEL_SIZE]
    [all...]
tcuTexture.cpp 50 inline Vec4 readRGBA8888Float (const deUint8* ptr) { return Vec4(ptr[0]/255.0f, ptr[1]/255.0f, ptr[2]/255.0f, ptr[3]/255.0f); }
51 inline Vec4 readRGB888Float (const deUint8* ptr) { return Vec4(ptr[0]/255.0f, ptr[1]/255.0f, ptr[2]/255.0f, 1.0f); }
52 inline IVec4 readRGBA8888Int (const deUint8* ptr) { return IVec4(ptr[0], ptr[1], ptr[2], ptr[3]); }
53 inline IVec4 readRGB888Int (const deUint8* ptr) { return IVec4(ptr[0], ptr[1], ptr[2], 0xff); }
57 inline void writeRGBA8888Int (deUint8* ptr, const IVec4& val)
65 inline void writeRGB888Int (deUint8* ptr, const IVec4& val)
72 inline void writeRGBA8888Float (deUint8* ptr, const Vec4& val)
80 inline void writeRGB888Float (deUint8* ptr, const Vec4& val)
261 inline float channelToFloat (const deUint8* value, TextureFormat::ChannelType type)
268 case TextureFormat::UNORM_INT8: return (float)*((const deUint8*)value) / 255.0f
    [all...]
tcuRGBA.hpp 87 static RGBA fromBytes (const deUint8* bytes) { return RGBA(bytes[0], bytes[1], bytes[2], bytes[3]); }
88 void toBytes (deUint8* bytes) const { bytes[0] = getRed(); bytes[1] = getGreen(); bytes[2] = getBlue(); bytes[3] = getAlpha(); }
tcuThreadUtil.cpp 179 deUint8* Thread::getDummyData (size_t size)
254 m_data = std::vector<deUint8>(size);
  /external/deqp/framework/platform/ios/
tcuIOSApp.mm 134 int readInfoLog (deUint8* dst, int numBytes) { DE_UNREF(dst && numBytes); return 0; /* not supported */ }
135 int readTestLog (deUint8* dst, int numBytes);
201 int LocalTestProcess::readTestLog (deUint8* dst, int numBytes)
  /external/deqp/executor/
xeTestCaseListParser.cpp 79 void TestCaseListParser::parse (const deUint8* bytes, int numBytes)
xeTestLogParser.cpp 52 void TestLogParser::parse (const deUint8* bytes, int numBytes)
xeXMLParser.cpp 82 void Tokenizer::feed (const deUint8* bytes, int numBytes)
373 void Parser::feed (const deUint8* bytes, int numBytes)
  /external/deqp/framework/delibs/debase/
deDefs.c 28 DE_STATIC_ASSERT(sizeof(deUint8) == 1);
deDefs.h 137 typedef unsigned char deUint8;
296 #define DE_OFFSET_OF(STRUCT, MEMBER) ((int)(deUintptr)(deUint8*)&(((STRUCT*)0)->MEMBER))
  /external/deqp/framework/delibs/decpp/
deDefs.hpp 110 # define DE_EMPTY_CPP_FILE namespace { deUint8 unused; }
deArrayBuffer.hpp 174 return (T*)(((deUint8*)m_ptr) + Stride * elementNdx);
180 return (T*)(((deUint8*)m_ptr) + Stride * elementNdx);
  /external/deqp/execserver/tools/
xsTest.cpp 72 vector<deUint8> buf;
90 void readBytes (de::Socket& socket, vector<deUint8>& dst, int numBytes)
110 vector<deUint8> header;
126 vector<deUint8> messageBuf;
697 deUint8 tmpBuf[1024*16];
977 deUint8* data = (deUint8*)deCalloc(dataSize);
1014 deUint8 block[1024];
  /external/deqp/framework/platform/android/
tcuAndroidExecService.cpp 254 int TestProcess::readTestLog (deUint8* dst, int numBytes)
282 int TestProcess::readInfoLog (deUint8* dst, int numBytes)
  /external/deqp/modules/gles3/functional/
es3fTextureWrapTests.cpp 218 deUint8* const data = (deUint8*)compressedTexture.getData();
231 static const deUint8 blocks[][BLOCK_SIZE] =
249 deUint8* const data = (deUint8*)compressedTexture.getData();
  /external/deqp/modules/glshared/
glsStateChangePerfTestCases.cpp 149 void genTextureData (vector<deUint8>& data, int width, int height)
158 data.push_back((deUint8)((255*x)/width));
159 data.push_back((deUint8)((255*y)/width));
160 data.push_back((deUint8)((255*x*y)/(width*height)));
343 vector<deUint8> textureData;
glsUniformBlockCase.cpp 638 deUint8* elemPtr = (deUint8*)basePtr + entry.offset + (isArray ? elemNdx*entry.arrayStride : 0);
642 deUint8* vecPtr = elemPtr + (isMatrix ? vecNdx*entry.matrixStride : 0);
646 deUint8* compPtr = vecPtr + compSize*compNdx;
947 const deUint8* elemPtr = (const deUint8*)basePtr + entry.offset + (isArray ? elementNdx*entry.arrayStride : 0);
965 const deUint8* compPtr = elemPtr + (entry.isRowMajor ? rowNdx*entry.matrixStride + colNdx*compSize
979 const deUint8* compPtr = elemPtr + scalarNdx*compSize;
    [all...]

Completed in 533 milliseconds

1 2 34 5 6 7 8