HomeSort by relevance Sort by last modified time
    Searched refs:rgb565 (Results 1 - 13 of 13) 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/libjpeg-turbo/
CMakeLists.txt 545 # CC: RGB->RGB565 SAMP: fullsize IDCT: islow ENT: huff
547 ${dir}djpeg${suffix} -dct int -rgb565 -dither none -bmp
552 # CC: RGB->RGB565 (dithered) SAMP: fullsize IDCT: islow ENT: huff
554 ${dir}djpeg${suffix} -dct int -rgb565 -bmp
582 # CC: YCC->RGB565 SAMP: h2v1 merged IDCT: ifast ENT: huff
584 ${dir}djpeg${suffix} -dct int -nosmooth -rgb565 -dither none -bmp
589 # CC: YCC->RGB565 (dithered) SAMP: h2v1 merged IDCT: ifast ENT: huff
591 ${dir}djpeg${suffix} -dct int -nosmooth -rgb565 -bmp
640 # CC: Gray->RGB565 SAMP: fullsize IDCT: islow ENT: huff
642 ${dir}djpeg${suffix} -dct int -rgb565 -dither none -bm
    [all...]
  /external/webp/src/dsp/
upsampling_neon.c 131 const uint8x8x2_t rgb565 = ZIP_U8(rg, gb); \
132 vst1q_u8(out, vcombine_u8(rgb565.val[0], rgb565.val[1])); \
253 NEON_UPSAMPLE_FUNC(UpsampleRgb565LinePair_NEON, Rgb565, 2)
yuv_sse2.c 157 const __m128i rgb565 = _mm_unpacklo_epi8(rg, gb); local
159 const __m128i rgb565 = _mm_unpacklo_epi8(gb, rg); local
161 _mm_storeu_si128((__m128i*)dst, rgb565);
    [all...]
  /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...]
  /device/google/cuttlefish_common/guest/hals/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. */
96 /* Build RGB565 word from red, green, and blue bytes. */
97 #define RGB565(r, g, b) \
103 /* Extract red, green, and blue bytes from RGB565 word. */
107 /* Make 8 bits red, green, and blue, extracted from RGB565 word. */
118 /* Build RGB565 word from red, green, and blue bytes. */
119 #define RGB565(r, g, b) \
176 /* Converts RGB565 color to YUV. *
    [all...]
  /external/skia/src/gpu/text/
GrGlyphCache.cpp 102 // A8, RGB565, or RGBA8888.
161 uint16_t* rgb565 = reinterpret_cast<uint16_t*>(dst); local
162 expand_bits(rgb565, bits, width, height, dstRB, srcRB);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 825 Bitmap rgb565 = BitmapFactory.decodeResource(mRes, id, opts); local
    [all...]
  /external/skqp/src/gpu/text/
GrAtlasGlyphCache.cpp 255 // A8, RGB565, or RGBA8888.
314 uint16_t* rgb565 = reinterpret_cast<uint16_t*>(dst); local
315 expand_bits(rgb565, bits, width, height, dstRB, srcRB);
  /external/skia/tests/
ReadPixelsTest.cpp 492 static const uint16_t rgb565[kNumPixels] = { variable
516 return rgb565;
  /external/skqp/tests/
ReadPixelsTest.cpp 492 static const uint16_t rgb565[kNumPixels] = { variable
516 return rgb565;
  /external/libjpeg-turbo/simd/
jsimd_arm_neon.S     [all...]
jsimd_arm64_neon.S     [all...]

Completed in 318 milliseconds