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

1 23 4 5 6 7 8 91011

  /external/deqp/framework/opengl/wrapper/
glwTypes.inl 52 typedef deUint8 GLubyte;
66 typedef deUint8 GLboolean;
  /external/deqp/framework/platform/android/
tcuAndroidAssets.cpp 60 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/modules/internal/
ditBuildInfoTests.cpp 157 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x01;
159 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x02;
  /external/deqp/framework/common/
tcuCompressedTexture.hpp 135 std::vector<deUint8> m_data;
138 void decompress (const PixelBufferAccess& dst, CompressedTexFormat fmt, const deUint8* src, const TexDecompressionParams& params = TexDecompressionParams());
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] = (deUint8)getRed(); bytes[1] = (deUint8)getGreen(); bytes[2] = (deUint8)getBlue(); bytes[3] = (deUint8)getAlpha(); }
tcuAstcUtil.cpp 205 Block128 (const deUint8* src)
460 deUint8* const dstU = (deUint8*)dst;
509 deUint8* const dstU = (deUint8*)dst;
512 dstU[i*4 + c] = (deUint8)((rgba[c] & 0xff00) >> 8);
    [all...]
tcuResource.cpp 61 void FileResource::read (deUint8* dst, int numBytes)
tcuSeedBuilder.hpp 52 SeedBuilder& operator<< (SeedBuilder& builder, deUint8 value);
  /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/glshared/
glsTextureBufferCase.cpp 84 deUint8 extend2BitsToByte (deUint8 bits)
88 return (deUint8)(bits | (bits << 2) | (bits << 4) | (bits << 6));
91 void genRandomCoords (de::Random rng, vector<deUint8>& coords, size_t offset, size_t size)
93 const deUint8 bits = 2;
94 const deUint8 bitMask = deUint8((0x1u << bits) - 1);
100 const deUint8 xBits = deUint8(rng.getUint32() & bitMask);
106 const deUint8 indices[]
    [all...]
glsStateQueryUtil.hpp 116 ((deUint8*)&m_preguard)[i] = (deUint8)WRITE_GUARD_VALUE;
117 ((deUint8*)&m_value)[i] = (deUint8)WRITE_GUARD_VALUE;
118 ((deUint8*)&m_postguard)[i] = (deUint8)WRITE_GUARD_VALUE;
138 if (((deUint8*)&m_value)[i] != (deUint8)WRITE_GUARD_VALUE)
153 if (((deUint8*)&m_preguard)[i] != (deUint8)WRITE_GUARD_VALUE
    [all...]
  /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/gles3/functional/
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];
  /external/deqp/external/vulkancts/framework/vulkan/
vkPrograms.hpp 54 ProgramBinary (ProgramFormat format, size_t binarySize, const deUint8* binary);
58 const deUint8* getBinary (void) const { return m_binary.empty() ? DE_NULL : &m_binary[0]; }
62 const std::vector<deUint8> m_binary;
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferComputeInstance.cpp 74 deMemcpy((deUint8 *) mapPtr + offset, color1.getPtr(), sizeof(tcu::Vec4));
75 deMemcpy((deUint8 *) mapPtr + offset + sizeof(tcu::Vec4), color2.getPtr(), sizeof(tcu::Vec4));
76 deMemset((deUint8 *) mapPtr + offset + 2 * sizeof(tcu::Vec4), 0x5A,
  /external/deqp/framework/delibs/debase/
deString.c 73 const deUint8* input = (const deUint8*)ptr;
  /external/deqp/framework/delibs/decpp/
deDefs.hpp 78 struct PaddingCheck { deUint8 b; T t; };
110 # define DE_EMPTY_CPP_FILE namespace { deUint8 unused; }
  /external/deqp/execserver/tools/
xsClient.cpp 66 vector<deUint8> buf;
84 void readBytes (de::Socket& socket, vector<deUint8>& dst, size_t 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/
xeTestResultParser.hpp 70 ParseResult parse (const deUint8* bytes, int numBytes);
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawTestCaseUtil.hpp 50 std::vector<deUint8> readBuffer(resource->getSize() + 1);
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateTestCaseUtil.hpp 59 std::vector<deUint8> readBuffer(resource->getSize() + 1);
  /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);
  /external/deqp/framework/qphelper/
qpXmlWriter.c 256 deBool qpXmlWriter_writeBase64 (qpXmlWriter* writer, const deUint8* data, size_t numBytes)
281 deUint8 s0 = data[srcNdx];
282 deUint8 s1 = (numRead >= 2) ? data[srcNdx+1] : 0;
283 deUint8 s2 = (numRead >= 3) ? data[srcNdx+2] : 0;

Completed in 464 milliseconds

1 23 4 5 6 7 8 91011