HomeSort by relevance Sort by last modified time
    Searched refs:rgb565 (Results 1 - 10 of 10) sorted by null

  /external/webp/include/webp/
extras.h 37 // Import rgb sample in RGB565 packed format into 'picture'. The 'picture'
39 WEBP_EXTERN(int) WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic);
  /external/webp/src/webp/
extras.h 37 // Import rgb sample in RGB565 packed format into 'picture'. The 'picture'
39 WEBP_EXTERN(int) WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic);
  /external/skia/src/gpu/text/
GrFontScaler.cpp 91 // A8, RGB565, or RGBA8888.
150 uint16_t* rgb565 = reinterpret_cast<uint16_t*>(dst); local
151 expand_bits(rgb565, bits, width, height, dstRB, srcRB);
  /external/webp/src/dsp/
upsampling_neon.c 150 const uint8x8x2_t rgb565 = ZIP_U8(rg, gb); \
151 vst1q_u8(out, vcombine_u8(rgb565.val[0], rgb565.val[1])); \
271 NEON_UPSAMPLE_FUNC(UpsampleRgb565LinePair, Rgb565, 2)
yuv_sse2.c 150 const __m128i rgb565 = _mm_unpacklo_epi8(rg, gb); local
152 const __m128i rgb565 = _mm_unpacklo_epi8(gb, rg); local
154 _mm_storeu_si128((__m128i*)dst, rgb565);
  /device/generic/goldfish/camera/
Converters.h 45 * RGB565 color masks
81 /* Extract red, green, and blue bytes from RGB565 word. */
85 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
93 /* Build RGB565 word from red, green, and blue bytes. */
94 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(b) << 6) | g) << 5) | r)
98 /* Extract red, green, and blue bytes from RGB565 word. */
102 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
110 /* Build RGB565 word from red, green, and blue bytes. */
111 #define RGB565(r, g, b) static_cast<uint16_t>((((static_cast<uint16_t>(r) << 6) | g) << 5) | b)
160 /* Converts RGB565 color to YUV. *
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 657 Bitmap rgb565 = BitmapFactory.decodeResource(mRes, id, opts); local
658 assertNotNull(rgb565);
659 assertEquals(width, rgb565.getWidth());
660 assertEquals(height, rgb565.getHeight());
662 assertEquals(Config.RGB_565, rgb565.getConfig());
667 compareBitmaps(reference, rgb565.copy(Config.ARGB_8888, false), 30, true, true);
    [all...]
  /external/libjpeg-turbo/
CMakeLists.txt 491 # CC: RGB->RGB565 SAMP: fullsize IDCT: islow ENT: huff
493 ${dir}djpeg${suffix} -dct int -rgb565 -dither none -bmp
499 # CC: RGB->RGB565 (dithered) SAMP: fullsize IDCT: islow ENT: huff
501 ${dir}djpeg${suffix} -dct int -rgb565 -bmp
533 # CC: YCC->RGB565 SAMP: h2v1 merged IDCT: ifast ENT: huff
535 ${dir}djpeg${suffix} -dct int -nosmooth -rgb565 -dither none -bmp
541 # CC: YCC->RGB565 (dithered) SAMP: h2v1 merged IDCT: ifast ENT: huff
543 ${dir}djpeg${suffix} -dct int -nosmooth -rgb565 -bmp
602 # CC: Gray->RGB565 SAMP: fullsize IDCT: islow ENT: huff
604 ${dir}djpeg${suffix} -dct int -rgb565 -dither none -bm
    [all...]
  /external/libjpeg-turbo/simd/
jsimd_arm64_neon.S     [all...]
jsimd_arm_neon.S     [all...]

Completed in 136 milliseconds