Home
last modified time | relevance | path

Searched refs:readChannel (Results 1 – 3 of 3) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/texture/
DvktSampleVerifierUtil.cpp762 deUint64 readChannel (const void* ptr, in readChannel() function
848 deUint64 pack = readChannel(pixelPtr, 0, baseTypeBytes); in convertNormalizedFormat()
871 chanUVal = readChannel(pixelPtr, chan * chanSize, chanSize); in convertNormalizedFormat()
/external/deqp/external/openglcts/modules/gl/
Dgl4cCopyImageTests.cpp123 …static void readChannel(glw::GLenum type, glw::GLuint channel, const glw::GLubyte* pixel, glw::GLd…
2147 void Utils::readChannel(GLenum type, GLuint channel, const GLubyte* pixel, GLdouble& value) in readChannel() function in gl4cts::CopyImage::Utils
2400 readChannel(type, 0, pixel, out_red); in unpackPixel()
2407 readChannel(type, 0, pixel, out_red); in unpackPixel()
2408 readChannel(type, 1, pixel, out_green); in unpackPixel()
2417 readChannel(type, 0, pixel, out_red); in unpackPixel()
2418 readChannel(type, 1, pixel, out_green); in unpackPixel()
2419 readChannel(type, 2, pixel, out_blue); in unpackPixel()
2420 readChannel(type, 3, pixel, out_alpha); in unpackPixel()
2423 readChannel(type, 0, pixel, out_red); in unpackPixel()
[all …]
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsFileChannelTest.java203 ByteBufferChannel readChannel = new ByteBufferChannel(buffer("1234567890")); in testTransferFrom() local
204 assertEquals(10, channel.transferFrom(readChannel, 0, 100)); in testTransferFrom()