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

12 3 4 5 6 7 8

  /external/deqp/framework/platform/android/
tcuAndroidAssets.hpp 54 void read (deUint8* dst, int numBytes);
tcuAndroidAssets.cpp 58 void AssetResource::read (deUint8* dst, int numBytes)
tcuAndroidExecService.hpp 57 virtual int readTestLog (deUint8* dst, int numBytes);
58 virtual int readInfoLog (deUint8* dst, int numBytes);
  /external/deqp/framework/delibs/decpp/
deBlockBuffer.cpp 231 Producer (BlockBuffer<deUint8>* buffer, deUint32 seed)
239 deUint8 tmp[1024];
253 catch (const BlockBuffer<deUint8>::CanceledException&)
261 BlockBuffer<deUint8>* m_buffer;
268 Consumer (BlockBuffer<deUint8>* buffer, deUint32 seed)
276 deUint8 tmp[1024];
287 catch (const BlockBuffer<deUint8>::CanceledException&)
295 BlockBuffer<deUint8>* m_buffer;
301 BlockBuffer<deUint8> buffer (64, 16);
  /external/deqp/framework/delibs/destream/
deRingbuffer.c 37 deUint8* buffer;
62 ringbuffer->buffer = (deUint8*)deMalloc(sizeof(deUint8) * blockSize * blockCount);
131 deUint8* src = DE_NULL;
132 deUint8* dst = DE_NULL;
142 src = (deUint8*)buf + *written;
207 deUint8* src = DE_NULL;
208 deUint8* dst = DE_NULL;
239 dst = (deUint8*)buf + *read;
deStreamCpyThread.c 31 deUint8* buffer = malloc(sizeof(deUint8) * thread->bufferSize);
  /external/deqp/modules/glshared/
glsBufferTestUtil.cpp 67 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed)
69 std::copy(tcu::RandomValueIterator<deUint8>::begin(seed, numBytes), tcu::RandomValueIterator<deUint8>::end(), ptr);
72 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes)
100 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n"
101 << " got " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart+printLen))
120 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n
    [all...]
glsStateQueryUtil.hpp 92 deUint8 m_isWrittenToGuard[sizeof(T)];
103 m_isWrittenToGuard[i] = (deUint8)WRITE_GUARD_VALUE;
122 if (m_isWrittenToGuard[i] != (deUint8)WRITE_GUARD_VALUE)
  /external/deqp/executor/
xeTcpIpLink.cpp 40 static void writeMessageHeader (de::BlockBuffer<deUint8>& dst, xs::MessageType type, int messageSize)
42 deUint8 hdr[xs::MESSAGE_HEADER_SIZE];
47 static void writeKeepalive (de::BlockBuffer<deUint8>& dst)
53 static void writeExecuteBinary (de::BlockBuffer<deUint8>& dst, const char* name, const char* params, const char* workDir, const char* caseList)
62 dst.write(nameSize, (const deUint8*)name);
63 dst.write(paramsSize, (const deUint8*)params);
64 dst.write(workDirSize, (const deUint8*)workDir);
65 dst.write(caseListSize, (const deUint8*)caseList);
69 static void writeStopExecution (de::BlockBuffer<deUint8>& dst)
136 void TcpIpLinkState::onTestLogData (const deUint8* bytes, int numBytes) cons
    [all...]
  /external/deqp/modules/gles2/functional/
es2fBufferTestUtil.cpp 70 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed)
72 std::copy(tcu::RandomValueIterator<deUint8>::begin(seed, numBytes), tcu::RandomValueIterator<deUint8>::end(), ptr);
75 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes)
103 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n"
104 << " got " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(resPtr+diffSpanStart+printLen))
123 << " expected " << tcu::formatArray(tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart), tcu::Format::HexIterator<deUint8>(refPtr+diffSpanStart+printLen)) << "\n
    [all...]
es2fReadPixelsTests.cpp 236 std::vector<deUint8> pixelData;
247 const deUint8 redThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTarget().getPixelFormat().redBits, formatBitDepths.x()))));
248 const deUint8 greenThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTarget().getPixelFormat().greenBits, formatBitDepths.y()))));
249 const deUint8 blueThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTarget().getPixelFormat().blueBits, formatBitDepths.z()))));
250 const deUint8 alphaThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTarget().getPixelFormat().alphaBits, formatBitDepths.w()))));
es2fApiCase.cpp 87 void ApiCase::checkBooleans (deUint8 value, deUint8 expected)
  /external/deqp/execserver/
xsDefs.hpp 61 typedef de::RingBuffer<deUint8> ByteBuffer;
62 typedef de::BlockBuffer<deUint8> ThreadedByteBuffer;
xsPosixTestProcess.hpp 89 virtual int readTestLog (deUint8* dst, int numBytes);
90 virtual int readInfoLog (deUint8* dst, int numBytes) { return m_infoBuffer.tryRead(numBytes, dst); }
xsWin32TestProcess.hpp 121 int read (deUint8* dst, int numBytes) { return m_logBuffer.tryRead(numBytes, dst); }
192 virtual int readTestLog (deUint8* dst, int numBytes);
193 virtual int readInfoLog (deUint8* dst, int numBytes) { return m_infoBuffer.tryRead(numBytes, dst); }
xsTestDriver.hpp 75 std::vector<deUint8> m_dataMsgTmpBuf;
  /external/deqp/framework/common/
tcuResource.hpp 50 virtual void read (deUint8* dst, int numBytes) = 0;
114 void read (deUint8* dst, int numBytes);
tcuBilinearImageCompare.cpp 44 static inline deUint8 getChannel (deUint32 color)
46 return (deUint8)((color >> (Channel*8)) & 0xff);
52 return *(const deUint32*)((const deUint8*)src.getDataPtr() + y*src.getRowPitch() + x*4);
57 return deReverseBytes32(*(const deUint32*)((const deUint8*)src.getDataPtr() + y*src.getRowPitch() + x*4));
74 inline deUint8 interpolateChannel (deUint32 fx1, deUint32 fy1, deUint8 p00, deUint8 p01, deUint8 p10, deUint8 p11)
83 return (deUint8)rounded
    [all...]
tcuFuzzyImageCompare.cpp 38 static inline deUint8 getChannel (deUint32 color)
40 return (deUint8)((color >> (Channel*8)) & 0xff);
43 static inline deUint8 getChannel (deUint32 color, int channel)
45 return (deUint8)((color >> (channel*8)) & 0xff);
48 static inline deUint32 setChannel (deUint32 color, int channel, deUint8 val)
58 static inline deUint8 roundToUint8Sat (float v)
60 return (deUint8)de::clamp((int)(v + 0.5f), 0, 255);
71 const deUint8* ptr = (const deUint8*)src.getDataPtr() + src.getRowPitch()*y + x*NumChannels;
87 return *(const deUint32*)((const deUint8*)src.getDataPtr() + src.getRowPitch()*y + x*4)
    [all...]
tcuImageIO.cpp 87 deUint8 header[8];
127 row_pointers[y] = (deUint8*)dst.getAccess().getDataPtr() + y*dst.getAccess().getRowPitch();
195 rowPointers[y] = (deUint8*)src.getDataPtr() + y*src.getRowPitch();
216 resource->read((deUint8*)&val, sizeof(val));
233 deUint8 refMagic[] = {'P', 'K', 'M', ' ', '1', '0'};
234 deUint8 magic[6];
252 resource->read((deUint8*)dst.getData(), dst.getDataSize());
tcuThreadUtil.hpp 177 deUint8* getDummyData (size_t size); //!< Return data pointer that contains at least size bytes. Valid until next call
199 std::vector<deUint8> m_dummyData;
212 const deUint8* getData (void) const { return &(m_data[0]); }
216 std::vector<deUint8> m_data;
  /external/deqp/modules/gles31/functional/
es31fShaderAtomicOpTests.cpp 213 vector<deUint8> bufData(blockInfo.dataSize);
241 (int)inVarInfo.arrayStride, (const deUint8*)resPtr + inVarInfo.offset,
242 (int)outVarInfo.arrayStride, (const deUint8*)resPtr + outVarInfo.offset,
243 (int)groupVarInfo.arrayStride, (const deUint8*)resPtr + groupVarInfo.offset);
274 *(int*)((deUint8*)inputs + stride*valNdx) = rnd.getInt(minVal, maxVal);
285 const int groupOutput = *(const int*)((const deUint8*)groupOutputs + groupNdx*groupStride);
292 const int inputValue = *(const int*)((const deUint8*)inputs + inputStride*(groupOffset+localNdx));
304 const int inputValue = *(const int*)((const deUint8*)inputs + inputStride*(groupOffset+localNdx));
305 const int outputValue = *(const int*)((const deUint8*)outputs + outputStride*(groupOffset+localNdx));
427 *(int*)((deUint8*)inputs + stride*valNdx) = rnd.getInt(minVal, maxVal)
    [all...]
  /external/deqp/framework/delibs/deimage/
deImage.h 60 void deImage_copyToUint8RGBA (const deImage* image, deUint8* pixels);
  /external/deqp/framework/opengl/wrapper/
glwTypes.inl 52 typedef deUint8 GLubyte;
66 typedef deUint8 GLboolean;
  /external/deqp/modules/internal/
ditBuildInfoTests.cpp 157 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x01;
159 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x02;

Completed in 2567 milliseconds

12 3 4 5 6 7 8