/hardware/bsp/intel/peripheral/libupm/src/lpd8806/ |
lpd8806.cxx | 39 m_pixels = NULL; 68 if ((m_pixels = (uint8_t *) malloc(totalBytes))) { 70 memset ( m_pixels , 0x80, dataBytes); // Init to RGB 'off' state 71 memset (&m_pixels[dataBytes], 0 , latchBytes); // Clear latch bytes 76 if (m_pixels) { 77 free(m_pixels); 84 uint8_t *ptr = &m_pixels[pixelOffset * 3]; 93 uint8_t *ptr = m_pixels;
|
lpd8806.h | 106 uint8_t* m_pixels; member in class:upm::LPD8806
|
/external/deqp/framework/common/ |
tcuSurface.hpp | 67 de::ArrayBuffer<deUint32> m_pixels; member in class:tcu::Surface 75 deUint32* pixAddr = m_pixels.getElementPtr(pixOffset); 92 const deUint32* pixAddr = m_pixels.getElementPtr(pixOffset); 107 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : m_pixels.getPtr()); 113 return PixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), m_width, m_height, 1, m_pixels.empty() ? DE_NULL : m_pixels.getPtr());
|
tcuSurface.cpp | 37 , m_pixels (width*height) 56 m_pixels.setStorage(width * height);
|
/external/deqp/framework/delibs/coding_guidelines/ |
de-coding-guidelines.html | [all...] |