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

1 23 4 5 6 7 8

  /external/deqp/modules/gles3/functional/
es3fApiCase.cpp 89 void ApiCase::checkBooleans (deUint8 value, deUint8 expected)
es3fColorClearTest.cpp 90 ClearInfo (const tcu::IVec4& rect, deUint8 colorMask, tcu::RGBA color)
96 deUint8 m_colorMask;
111 vector<deUint8> pixelKnownChannelMask (numPixels, 0);
153 deUint8 clearMask;
187 deUint8 spanKnownMask = 0;
201 deUint8 clearMask = op.m_colorMask;
256 deUint8 colMask = pixelKnownChannelMask[offset];
es3fReadPixelsTests.cpp 80 void clearColor (tcu::Texture2D& reference, vector<deUint8>& pixelData, bool align, int pixelSize);
235 void ReadPixelsTest::clearColor (tcu::Texture2D& reference, vector<deUint8>& pixelData, bool align, int pixelSize)
376 vector<deUint8> pixelData;
386 const deUint8 redThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTarget().getPixelFormat().redBits, formatBitDepths.x()))));
387 const deUint8 greenThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTarget().getPixelFormat().greenBits, formatBitDepths.y()))));
388 const deUint8 blueThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTarget().getPixelFormat().blueBits, formatBitDepths.z()))));
389 const deUint8 alphaThreshold = (deUint8)deCeilFloatToInt32(256.0f * (2.0f / (1 << deMin32(m_context.getRenderTa (…)
    [all...]
es3fVertexArrayObjectTests.cpp 162 deUint8* m_indices;
165 deUint8* createRandomBufferData (const BufferSpec& buffer);
166 deUint8* generateIndices (void);
224 deUint8* data = createRandomBufferData(m_spec.buffers[bufferNdx]);
267 deUint8* VertexArrayObjectTest::generateIndices (void)
279 deUint8* indices = new deUint8[m_spec.indexCount * typeSize];
283 deUint8* pos = indices + typeSize * i;
316 deUint8* VertexArrayObjectTest::createRandomBufferData (const BufferSpec& buffer)
318 deUint8* data = new deUint8[buffer.size]
    [all...]
  /external/deqp/framework/delibs/deimage/
deImage.c 41 return (void*)((deUint8*)image->pixels + offset);
161 void deImage_copyToUint8RGBA (const deImage* image, deUint8* pixels)
172 pixels[4*ndx+0] = (deUint8)deARGB_getRed(pixel);
173 pixels[4*ndx+1] = (deUint8)deARGB_getGreen(pixel);
174 pixels[4*ndx+2] = (deUint8)deARGB_getBlue(pixel);
175 pixels[4*ndx+3] = (deUint8)deARGB_getAlpha(pixel);
  /external/deqp/modules/gles2/functional/
es2fColorClearTest.cpp 90 ClearInfo (const tcu::IVec4& rect, deUint8 colorMask, tcu::RGBA color)
96 deUint8 m_colorMask;
111 vector<deUint8> pixelKnownChannelMask (numPixels, 0);
153 deUint8 clearMask;
187 deUint8 spanKnownMask = 0;
201 deUint8 clearMask = op.m_colorMask;
256 deUint8 colMask = pixelKnownChannelMask[offset];
  /external/deqp/modules/glshared/
glsTextureBufferCase.cpp 82 deUint8 extend2BitsToByte (deUint8 bits)
84 deUint8 x = 0;
96 void genRandomCoords (de::Random rng, vector<deUint8>& coords, size_t offset, size_t size)
98 const deUint8 bits = 2;
99 const deUint8 bitMask = deUint8((0x1u << bits) - 1);
105 const deUint8 xBits = deUint8(rng.getUint32() & bitMask);
111 const deUint8 indices[]
    [all...]
  /external/deqp/framework/common/
tcuTextureUtil.hpp 105 inline deUint8 floatToU8 (float fv)
121 return (deUint8)(m>>24);
tcuCompressedTexture.hpp 118 std::vector<deUint8> m_data;
tcuResource.cpp 68 void FileResource::read (deUint8* dst, int numBytes)
  /external/deqp/framework/delibs/debase/
deString.c 73 const deUint8* input = (const deUint8*)ptr;
  /external/deqp/execserver/tools/
xsClient.cpp 66 vector<deUint8> buf;
84 void readBytes (de::Socket& socket, vector<deUint8>& dst, int numBytes)
104 vector<deUint8> header;
120 vector<deUint8> messageBuf;
  /external/deqp/execserver/
xsPosixFileReader.cpp 68 std::vector<deUint8> tmpBuf (FILEREADER_TMP_BUFFER_SIZE);
  /external/deqp/executor/
xeBatchResult.cpp 40 void InfoLog::append (const deUint8* bytes, int numBytes)
xeTestResultParser.hpp 69 ParseResult parse (const deUint8* bytes, int numBytes);
xeBatchExecutor.cpp 240 deUint8 eos = 0;
281 void BatchExecutor::onTestLogData (const deUint8* bytes, int numBytes)
294 void BatchExecutor::onInfoLogData (const deUint8* bytes, int numBytes)
356 void BatchExecutor::enqueueTestLogData (void* userPtr, const deUint8* bytes, int numBytes)
368 void BatchExecutor::enqueueInfoLogData (void* userPtr, const deUint8* bytes, int numBytes)
xeContainerFormatParser.cpp 65 void ContainerFormatParser::feed (const deUint8* bytes, int numBytes)
109 void ContainerFormatParser::getData (deUint8* dst, int numBytes, int offset)
xeTestLogWriter.cpp 97 deUint8 lastCh = caseData.getData()[caseData.getDataSize()-1];
180 const deUint8* data;
183 Base64Formatter (const deUint8* data_, int numBytes_) : data(data_), numBytes(numBytes_) {}
197 const deUint8* data = fmt.data;
207 deUint8 s0 = data[srcNdx];
208 deUint8 s1 = (numRead >= 2) ? data[srcNdx+1] : 0;
209 deUint8 s2 = (numRead >= 3) ? data[srcNdx+2] : 0;
229 inline Base64Formatter toBase64 (const deUint8* bytes, int numBytes) { return Base64Formatter(bytes, numBytes); }
  /external/deqp/framework/opengl/
gluDrawUtil.hpp 213 inline PrimitiveList NAME (int numElements, const deUint8* indices) \
261 DECLARE_VA_CTOR(Uint8, deUint8, VTX_COMP_UNSIGNED_INT8, VTX_COMP_CONVERT_NONE);
269 DECLARE_VA_CTOR(Unorm8, deUint8, VTX_COMP_UNSIGNED_INT8, VTX_COMP_CONVERT_NORMALIZE_TO_FLOAT);
277 DECLARE_VA_CTOR(Uint8Float, deUint8, VTX_COMP_UNSIGNED_INT8, VTX_COMP_CONVERT_CAST_TO_FLOAT);
gluTexture.hpp 270 deUint8* getRefBuffer (void) { return &(m_refBuffer[0]); }
271 const deUint8* getRefBuffer (void) const { return &(m_refBuffer[0]); }
282 void bufferData (const deUint8* data, size_t size);
292 std::vector<deUint8> m_refBuffer;
  /external/deqp/framework/qphelper/
qpXmlWriter.c 253 deBool qpXmlWriter_writeBase64 (qpXmlWriter* writer, const deUint8* data, int numBytes)
278 deUint8 s0 = data[srcNdx];
279 deUint8 s1 = (numRead >= 2) ? data[srcNdx+1] : 0;
280 deUint8 s2 = (numRead >= 3) ? data[srcNdx+2] : 0;
  /external/deqp/modules/gles31/functional/
es31fShaderPackingFunctionTests.cpp 815 const deUint16 ref0 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1);
816 const deUint16 ref1 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].y(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1);
817 const deUint16 ref2 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].z(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1);
818 const deUint16 ref3 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].w(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1);
821 const deUint16 res0 = (deUint8)(res & 0xff);
822 const deUint16 res1 = (deUint8)((res >> 8) & 0xff);
823 const deUint16 res2 = (deUint8)((res >> 16) & 0xff);
824 const deUint16 res3 = (deUint8)((res >> 24) & 0xff);
909 const deInt8 in0 = (deInt8)(deUint8)(inputs[valNdx] & 0xff);
910 const deInt8 in1 = (deInt8)(deUint8)((inputs[valNdx] >> 8) & 0xff)
    [all...]
  /external/deqp/framework/delibs/decpp/
deArrayBuffer.cpp 216 deMemcpy(&dst, (deUint8*)source.getPtr() + 64, sizeof(int));
227 deMemcpy(&dst, (deUint8*)source.getPtr() + 64, sizeof(int));
deRandom.hpp 55 deUint8 getUint8 (void) { return (deUint8)deRandom_getUint32(&m_rnd); }
  /external/deqp/framework/delibs/destream/
deThreadStream.c 51 deUint8* buffer = malloc(sizeof(deUint8) * threadStream->bufferSize);

Completed in 1996 milliseconds

1 23 4 5 6 7 8