HomeSort by relevance Sort by last modified time
    Searched full:rgbx (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/webp/src/dsp/
alpha_processing_neon.c 46 uint32_t* const rgbx = (uint32_t*)rgba; local
51 uint8x8x4_t RGBX = vld4_u8((const uint8_t*)(rgbx + i));
52 MULTIPLY_BY_ALPHA(RGBX, 0, 3);
53 vst4_u8((uint8_t*)(rgbx + i), RGBX);
57 uint8x8x4_t RGBX = vld4_u8((const uint8_t*)(rgbx + i));
58 MULTIPLY_BY_ALPHA(RGBX, 3, 0);
59 vst4_u8((uint8_t*)(rgbx + i), RGBX)
    [all...]
alpha_processing_sse2.c 156 #define APPLY_ALPHA(RGBX, SHUFFLE) do { \
157 const __m128i argb0 = _mm_loadu_si128((const __m128i*)&(RGBX)); \
174 _mm_storeu_si128((__m128i*)&(RGBX), A3); \
184 uint32_t* const rgbx = (uint32_t*)rgba; local
188 APPLY_ALPHA(rgbx[i], _MM_SHUFFLE(2, 3, 3, 3));
192 APPLY_ALPHA(rgbx[i], _MM_SHUFFLE(0, 0, 0, 1));
  /external/mesa3d/src/gallium/auxiliary/util/
u_blend.h 7 * When faking RGBX render target formats with RGBA ones, the blender is still
  /hardware/interfaces/automotive/evs/1.0/vts/functional/
FormatConvert.h 24 // Given an image buffer in NV21 format (HAL_PIXEL_FORMAT_YCRCB_420_SP), output 32bit RGBx values.
33 // Given an image buffer in YV12 format (HAL_PIXEL_FORMAT_YV12), output 32bit RGBx values.
43 // Given an image buffer in YUYV format (HAL_PIXEL_FORMAT_YCBCR_422_I), output 32bit RGBx values.
54 // This is typically used to copy RGBx data into an RGBx output buffer.
  /packages/services/Car/evs/app/
FormatConvert.h 24 // Given an image buffer in NV21 format (HAL_PIXEL_FORMAT_YCRCB_420_SP), output 32bit RGBx values.
33 // Given an image buffer in YV12 format (HAL_PIXEL_FORMAT_YV12), output 32bit RGBx values.
43 // Given an image buffer in YUYV format (HAL_PIXEL_FORMAT_YCBCR_422_I), output 32bit RGBx values.
54 // This is typically used to copy RGBx data into an RGBx output buffer.
RenderBase.cpp 48 // Hardcoded to RGBx output display
142 // Hardcoded to RGBx for now
  /external/libjpeg-turbo/release/
ReadMe.txt 3 libjpeg-turbo implements both the traditional libjpeg API as well as the less powerful but more straightforward TurboJPEG API. libjpeg-turbo also features colorspace extensions that allow it to compress from/decompress to 32-bit and big-endian pixel buffers (RGBX, XBGR, etc.), as well as a full-featured Java interface.
deb-control.tmpl 23 big-endian pixel buffers (RGBX, XBGR, etc.), as well as a full-featured Java
  /external/python/cpython2/Lib/plat-irix5/
CL_old.py 30 RGBX = 1
58 elif f in (RGBX, RGBA):
76 elif f == RGBX:
77 return 'RGBX'
jpeg.py 26 format = cl.RGBX
54 format = cl.RGBX
  /device/asus/fugu/recovery/
recovery_ui.cpp 60 fprintf(stderr, "FAIL: unable to set RGBX mode on display controller: %s\n",
89 fprintf(stderr, "FAIL: unable to set RGBX mode on display controller: %s\n",
  /external/python/cpython2/Lib/plat-irix6/
jpeg.py 26 format = cl.RGBX
54 format = cl.RGBX
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cl.py 57 'RGB8', 'RGBA', 'RGBX', 'RLE', 'RLE24', 'RTR', 'RTR1',
  /external/python/cpython2/Lib/test/
test_cl.py 56 'RGB8', 'RGBA', 'RGBX', 'RLE', 'RLE24', 'RTR', 'RTR1',
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cl.py 57 'RGB8', 'RGBA', 'RGBX', 'RLE', 'RLE24', 'RTR', 'RTR1',
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cl.py 57 'RGB8', 'RGBA', 'RGBX', 'RLE', 'RLE24', 'RTR', 'RTR1',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cl.py 57 'RGB8', 'RGBA', 'RGBX', 'RLE', 'RLE24', 'RTR', 'RTR1',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cl.py 57 'RGB8', 'RGBA', 'RGBX', 'RLE', 'RLE24', 'RTR', 'RTR1',
  /external/mesa3d/src/intel/vulkan/
anv_formats.c 285 * this by switching them over to RGBX or RGBA formats under the
288 enum isl_format rgbx = isl_format_rgb_to_rgbx(format.isl_format); local
289 if (rgbx != ISL_FORMAT_UNSUPPORTED &&
290 isl_format_supports_rendering(devinfo, rgbx)) {
291 format.isl_format = rgbx;
413 /* XXX: We handle 3-channel formats by switching them out for RGBX or
417 * substantially more work and we have enough RGBX formats to handle
  /bootable/recovery/minui/
graphics_fbdev.cpp 71 // throughout we assume that the framebuffer device uses an RGBX
76 // results on the display when you write RGBX.
resources.cpp 135 // pixel format (currently only RGBX is supported) at load time, so
161 // 4 - input is 32-bit RGBA/RGBX
173 // expand gray level to RGBX
184 // expand RGBA to RGBX
194 // copy RGBA to RGBX
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_surface_formats.c 316 * fall back to RGBA or RGBX (we can't render to non-power-of-two
364 * used. On Gen8+ BGRX is actually allowed (but not RGBX).
430 /* The RGBX formats are not renderable. Normally these get mapped
434 * support RGBX formats at all. This will cause the upper layers of Mesa to
458 /* On hardware that lacks support for ETC1, we map ETC1 to RGBX
intel_pixel_read.c 120 /* We can't handle copying from RGBX or BGRX because the tiled_memcpy
122 * rather than TexFormat in case the RGBX format is being simulated with an
  /cts/hostsidetests/security/securityPatch/Bug-35950388/
local_poc.h 266 MDP_RGBX_8888, /* RGBX 888 */
284 MDP_RGBX_8888_TILE, /* RGBX 8888 in tile format */
  /external/freetype/src/sfnt/
pngshim.c 94 /* Converts RGBx bytes to BGRA. */

Completed in 1061 milliseconds

1 2 3 4 5 6