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

1 2 3 4 5 6 7 8

  /external/deqp/execserver/
xsProtocol.hpp 75 virtual void write (std::vector<deUint8>& buf) const = DE_NULL;
77 static void parseHeader (const deUint8* data, int dataSize, MessageType& type, int& messageSize);
78 static void writeHeader (MessageType type, int messageSize, deUint8* dst, int bufSize);
81 void writeNoData (std::vector<deUint8>& buf) const;
92 SimpleMessage (const deUint8* data, int dataSize) : Message((MessageType)MsgType) { DE_UNREF(data); XS_CHECK_MSG(dataSize == 0, "No payload expected"); }
96 void write (std::vector<deUint8>& buf) const { writeNoData(buf); }
108 HelloMessage (const deUint8* data, int dataSize);
112 void write (std::vector<deUint8>& buf) const;
123 ExecuteBinaryMessage (const deUint8* data, int dataSize);
127 void write (std::vector<deUint8>& buf) const
    [all...]
xsTestProcess.hpp 51 virtual int readTestLog (deUint8* dst, int numBytes) = DE_NULL;
52 virtual int readInfoLog (deUint8* dst, int numBytes) = DE_NULL;
xsProtocol.cpp 50 MessageParser (const deUint8* data, int dataSize)
86 const deUint8* m_data;
94 MessageWriter (MessageType msgType, std::vector<deUint8>& buf)
128 std::vector<deUint8>& m_buf;
141 void Message::parseHeader (const deUint8* data, int dataSize, MessageType& type, int& size)
149 void Message::writeHeader (MessageType type, int messageSize, deUint8* dst, int bufSize)
158 void Message::writeNoData (vector<deUint8>& buf) const
163 HelloMessage::HelloMessage (const deUint8* data, int dataSize)
171 void HelloMessage::write (vector<deUint8>& buf) const
177 TestMessage::TestMessage (const deUint8* data, int dataSize
    [all...]
xsExecutionServer.hpp 76 const deUint8* getMessageData (void) const;
80 std::vector<deUint8> m_buffer;
99 void processMessage (MessageType type, const deUint8* data, int dataSize);
124 std::vector<deUint8> m_sendRecvTmpBuf;
xsPosixFileReader.hpp 45 int read (deUint8* dst, int numBytes) { return m_buf.tryRead(numBytes, dst); }
  /external/deqp/modules/gles2/functional/
es2fBufferTestUtil.hpp 50 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed);
51 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes);
84 void setData (int numBytes, const deUint8* bytes);
85 void setSubData (int offset, int numBytes, const deUint8* bytes);
87 deUint8* getPtr (int offset = 0) { return &m_data[offset]; }
88 const deUint8* getPtr (int offset = 0) const { return &m_data[offset]; }
91 std::vector<deUint8> m_data;
112 virtual bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes) = DE_NULL;
132 bool verify (deUint32 buffer, const deUint8* reference, int offset, int numBytes)
    [all...]
es2fApiCase.hpp 52 void checkBooleans (deUint8 value, deUint8 expected);
  /external/deqp/executor/
xeCallQueue.hpp 61 const deUint8* getData (void) const { return m_data.empty() ? DE_NULL : &m_data[0]; }
62 deUint8* getData (void) { return m_data.empty() ? DE_NULL : &m_data[0]; }
66 std::vector<deUint8> m_data;
75 void read (deUint8* bytes, int numBytes);
76 const deUint8* getDataBlock (int numBytes); //!< \note Valid only during call.
89 void write (const deUint8* bytes, int numBytes);
133 reader.read((deUint8*)&value, sizeof(T));
140 writer.write((const deUint8*)&value, sizeof(T));
xeBatchResult.hpp 59 const deUint8* getBytes (void) const { return !m_data.empty() ? &m_data[0] : DE_NULL; }
61 void append (const deUint8* bytes, int numBytes);
67 std::vector<deUint8> m_data;
86 const deUint8* getData (void) const { return !m_data.empty() ? &m_data[0] : DE_NULL; }
87 deUint8* getData (void) { return !m_data.empty() ? &m_data[0] : DE_NULL; }
96 std::vector<deUint8> m_data;
xeBatchExecutor.hpp 83 void onTestLogData (const deUint8* bytes, int numBytes);
84 void onInfoLogData (const deUint8* bytes, int numBytes);
90 static void enqueueTestLogData (void* userPtr, const deUint8* bytes, int numBytes);
91 static void enqueueInfoLogData (void* userPtr, const deUint8* bytes, int numBytes);
xeTestCaseListParser.hpp 42 void parse (const deUint8* bytes, int numBytes);
xeTcpIpLink.hpp 52 void onTestLogData (const deUint8* bytes, int numBytes) const;
53 void onInfoLogData (const deUint8* bytes, int numBytes) const;
83 de::BlockBuffer<deUint8>& getBuffer (void) { return m_buffer; }
89 de::BlockBuffer<deUint8> m_buffer;
107 void handleMessage (xs::MessageType messageType, const deUint8* data, int dataSize);
112 std::vector<deUint8> m_curMsgBuf;
xeContainerFormatParser.hpp 61 void feed (const deUint8* bytes, int numBytes);
78 void getData (deUint8* dst, int numBytes, int offset);
111 de::RingBuffer<deUint8> m_buf;
xeXMLParser.hpp 91 void feed (const deUint8* bytes, int numBytes);
96 deUint8 getTokenByte (int offset) const { DE_ASSERT(m_curToken != TOKEN_INCOMPLETE && m_curToken != TOKEN_END_OF_STRING); return m_buf.peekBack(offset); }
133 de::RingBuffer<deUint8> m_buf;
147 void feed (const deUint8* bytes, int numBytes);
162 deUint8 getDataByte (int offset) const;
230 inline deUint8 Parser::getDataByte (int offset) const
235 return (deUint8)m_entityValue[offset];
xeCallQueue.cpp 163 void CallReader::read (deUint8* bytes, int numBytes)
170 const deUint8* CallReader::getDataBlock (int numBytes)
174 const deUint8* ptr = m_call->getData()+m_curPos;
186 reader.read((deUint8*)&c, sizeof(char));
212 void CallWriter::write (const deUint8* bytes, int numBytes)
232 writer.write((const deUint8*)str + pos, sizeof(char));
xeCommLink.hpp 51 typedef void (*LogDataFunc) (void* userPtr, const deUint8* bytes, int numBytes);
xeTestLogParser.hpp 59 void parse (const deUint8* bytes, int numBytes);
  /external/deqp/modules/glshared/
glsBufferTestUtil.hpp 54 void fillWithRandomBytes (deUint8* ptr, int numBytes, deUint32 seed);
55 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes);
91 void setData (int numBytes, const deUint8* bytes);
92 void setSubData (int offset, int numBytes, const deUint8* bytes);
94 deUint8* getPtr (int offset = 0) { return &m_data[offset]; }
95 const deUint8* getPtr (int offset = 0) const { return &m_data[offset]; }
98 std::vector<deUint8> m_data;
123 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes) = DE_NULL;
124 virtual void write (deUint32 buffer, int offset, int numBytes, const deUint8* bytes, deUint32 targetHint)
    [all...]
  /external/deqp/framework/common/
tcuSurface.hpp 83 *((deUint8*)pixAddr + 0) = (deUint8)col.getRed();
84 *((deUint8*)pixAddr + 1) = (deUint8)col.getGreen();
85 *((deUint8*)pixAddr + 2) = (deUint8)col.getBlue();
86 *((deUint8*)pixAddr + 3) = (deUint8)col.getAlpha();
102 const deUint8* byteAddr = (const deUint8*)pixAddr
    [all...]
tcuRGBA.cpp 63 deUint8 rDiff = 0;
64 deUint8 gDiff = 0;
65 deUint8 bDiff = 0;
66 deUint8 aDiff = 0;
73 rDiff = (deUint8)deAbs32(ra - rb);
81 gDiff = (deUint8)deAbs32(ga - gb);
89 bDiff = (deUint8)deAbs32(ba - bb);
97 aDiff = (deUint8)deAbs32(aa - ab);
tcuCompressedTexture.cpp 320 static inline deUint64 get64BitBlock (const deUint8* src, int blockNdx)
330 static inline deUint64 get128BitBlockStart (const deUint8* src, int blockNdx)
336 static inline deUint64 get128BitBlockEnd (const deUint8* src, int blockNdx)
353 static inline deUint8 extend4To8 (deUint8 src)
359 static inline deUint8 extend5To8 (deUint8 src)
365 static inline deUint8 extend6To8 (deUint8 src)
371 static inline deUint8 extend7To8 (deUint8 src
    [all...]
tcuRandomValueIterator.hpp 36 deUint8 data[sizeof(T) + sizeof(T)%4];
42 data[vecNdx*4+compNdx] = ((const deUint8*)&rval)[compNdx];
48 template <> inline deUint8 getRandomValue<deUint8> (de::Random& rnd) { return (deUint8)rnd.getUint32(); }
  /external/deqp/framework/delibs/deimage/
deTarga.c 45 deUint8* buffer;
49 deUint8 tgaHeader[18];
84 const deUint8* src = buffer;
86 deARGB* dst = (deUint32*)((deUint8*)image->pixels + dstY*image->width*bpp);
93 deUint8 b = *src++;
94 deUint8 g = *src++;
95 deUint8 r = *src++;
102 deUint8 a = *src++;
103 deUint8 b = *src++;
104 deUint8 g = *src++
    [all...]
  /external/deqp/modules/gles3/functional/
es3fApiCase.hpp 52 void checkBooleans (deUint8 value, deUint8 expected);
es3fASTCDecompressionCases.hpp 81 static void generateDummyBlocks (deUint8* dst, int num);
88 std::vector<deUint8> m_blockData;
117 static void generateDefaultBlockData (deUint8* dst, int numBlocks, int blockWidth, int blockHeight);

Completed in 1684 milliseconds

1 2 3 4 5 6 7 8