/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/ |
D | jdcolext-neon.c | 227 uint16x8_t rgb565 = vqshluq_n_s16(r, 8); in jsimd_ycc_rgb_convert_neon() local 228 rgb565 = vsriq_n_u16(rgb565, vqshluq_n_s16(g, 8), 5); in jsimd_ycc_rgb_convert_neon() 229 rgb565 = vsriq_n_u16(rgb565, vqshluq_n_s16(b, 8), 11); in jsimd_ycc_rgb_convert_neon() 231 vst1q_u16((uint16_t *)outptr, rgb565); in jsimd_ycc_rgb_convert_neon() 328 uint16x8_t rgb565 = vqshluq_n_s16(r, 8); in jsimd_ycc_rgb_convert_neon() local 329 rgb565 = vsriq_n_u16(rgb565, vqshluq_n_s16(g, 8), 5); in jsimd_ycc_rgb_convert_neon() 330 rgb565 = vsriq_n_u16(rgb565, vqshluq_n_s16(b, 8), 11); in jsimd_ycc_rgb_convert_neon() 334 vst1q_lane_u16((uint16_t *)(outptr + 6 * RGB_PIXELSIZE), rgb565, 6); in jsimd_ycc_rgb_convert_neon() 336 vst1q_lane_u16((uint16_t *)(outptr + 5 * RGB_PIXELSIZE), rgb565, 5); in jsimd_ycc_rgb_convert_neon() 338 vst1q_lane_u16((uint16_t *)(outptr + 4 * RGB_PIXELSIZE), rgb565, 4); in jsimd_ycc_rgb_convert_neon() [all …]
|
/third_party/flutter/skia/third_party/externals/libwebp/extras/ |
D | extras.c | 49 int WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic) { in WebPImportRGB565() argument 52 if (pic == NULL || rgb565 == NULL) return 0; in WebPImportRGB565() 61 const uint32_t rg = rgb565[2 * x + 1]; in WebPImportRGB565() 62 const uint32_t gb = rgb565[2 * x + 0]; in WebPImportRGB565() 64 const uint32_t rg = rgb565[2 * x + 0]; in WebPImportRGB565() 65 const uint32_t gb = rgb565[2 * x + 1]; in WebPImportRGB565() 76 rgb565 += 2 * width; in WebPImportRGB565()
|
D | extras.h | 39 WEBP_EXTERN int WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic);
|
/third_party/skia/third_party/externals/libwebp/extras/ |
D | extras.c | 50 int WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic) { in WebPImportRGB565() argument 53 if (pic == NULL || rgb565 == NULL) return 0; in WebPImportRGB565() 62 const uint32_t rg = rgb565[2 * x + 1]; in WebPImportRGB565() 63 const uint32_t gb = rgb565[2 * x + 0]; in WebPImportRGB565() 65 const uint32_t rg = rgb565[2 * x + 0]; in WebPImportRGB565() 66 const uint32_t gb = rgb565[2 * x + 1]; in WebPImportRGB565() 77 rgb565 += 2 * width; in WebPImportRGB565()
|
D | extras.h | 39 WEBP_EXTERN int WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic);
|
/third_party/ffmpeg/tests/ref/pixfmt/ |
D | rgb565 | 1 efa7c0337cc00c796c6df615223716f1 *tests/data/pixfmt/rgb565.yuv 2 304128 tests/data/pixfmt/rgb565.yuv
|
/third_party/skia/src/core/ |
D | SkCompressedDataUtils.cpp | 161 static SkPMColor from565(uint16_t rgb565) { in from565() argument 162 uint8_t r8 = SkR16ToR32((rgb565 >> 11) & 0x1F); in from565() 163 uint8_t g8 = SkG16ToG32((rgb565 >> 5) & 0x3F); in from565() 164 uint8_t b8 = SkB16ToB32(rgb565 & 0x1F); in from565()
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | SixteenBppTextureTest.cpp | 19 GLColor Convert565(const R5G6B5 &rgb565) in Convert565() argument 22 R5G6B5::readColor(&colorf, &rgb565); in Convert565() 31 R5G6B5 rgb565; in Convert565() local 32 R5G6B5::writeColor(&rgb565, &colorf); in Convert565() 33 return rgb565; in Convert565()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | SixteenBppTextureTest.cpp | 19 GLColor Convert565(const R5G6B5 &rgb565) in Convert565() argument 22 R5G6B5::readColor(&colorf, &rgb565); in Convert565() 31 R5G6B5 rgb565; in Convert565() local 32 R5G6B5::writeColor(&rgb565, &colorf); in Convert565() 33 return rgb565; in Convert565()
|
/third_party/ffmpeg/tests/fate/ |
D | pixfmt.mak | 8 rgb565 \
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | upsampling_neon.c | 131 const uint8x8x2_t rgb565 = ZIP_U8(rg, gb); \ 132 vst1q_u8(out, vcombine_u8(rgb565.val[0], rgb565.val[1])); \
|
D | yuv_sse2.c | 157 const __m128i rgb565 = _mm_unpacklo_epi8(rg, gb); in PackAndStore565_SSE2() local 159 const __m128i rgb565 = _mm_unpacklo_epi8(gb, rg); in PackAndStore565_SSE2() local 161 _mm_storeu_si128((__m128i*)dst, rgb565); in PackAndStore565_SSE2()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | upsampling_neon.c | 131 const uint8x8x2_t rgb565 = ZIP_U8(rg, gb); \ 132 vst1q_u8(out, vcombine_u8(rgb565.val[0], rgb565.val[1])); \
|
D | yuv_sse2.c | 157 const __m128i rgb565 = _mm_unpacklo_epi8(rg, gb); in PackAndStore565_SSE2() local 159 const __m128i rgb565 = _mm_unpacklo_epi8(gb, rg); in PackAndStore565_SSE2() local 161 _mm_storeu_si128((__m128i*)dst, rgb565); in PackAndStore565_SSE2()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_util.h | 262 uint16_t rgb565; member 317 PACK_F(rgb565, r5g6b5_unorm); in tu6_pack_border_color()
|
/third_party/flutter/skia/src/gpu/text/ |
D | GrStrikeCache.cpp | 142 uint16_t* rgb565 = reinterpret_cast<uint16_t*>(dst); in get_packed_glyph_image() local 143 expand_bits(rgb565, bits, width, height, dstRB, srcRB); in get_packed_glyph_image()
|
/third_party/skia/src/gpu/text/ |
D | GrAtlasManager.cpp | 91 uint16_t* rgb565 = reinterpret_cast<uint16_t*>(dst); in get_packed_glyph_image() local 92 expand_bits(rgb565, bits, width, height, dstRB, srcRB); in get_packed_glyph_image()
|
/third_party/libjpeg-turbo/ |
D | CMakeLists.txt | 1038 add_bittest(djpeg rgb-islow-565 "-dct;int;-rgb565;-dither;none;-bmp" 1043 add_bittest(djpeg rgb-islow-565D "-dct;int;-rgb565;-bmp" 1066 "-dct;int;-nosmooth;-rgb565;-dither;none;-bmp" 1071 add_bittest(djpeg 422m-ifast-565D "-dct;int;-nosmooth;-rgb565;-bmp" 1109 add_bittest(djpeg gray-islow-565 "-dct;int;-rgb565;-dither;none;-bmp" 1114 add_bittest(djpeg gray-islow-565D "-dct;int;-rgb565;-bmp" 1209 add_bittest(djpeg 420-islow-565 "-dct;int;-rgb565;-dither;none;-bmp" 1214 add_bittest(djpeg 420-islow-565D "-dct;int;-rgb565;-bmp" 1220 "-dct;int;-nosmooth;-rgb565;-dither;none;-bmp" 1225 add_bittest(djpeg 420m-islow-565D "-dct;int;-nosmooth;-rgb565;-bmp"
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | CMakeLists.txt | 1006 add_bittest(djpeg rgb-islow-565 "-dct;int;-rgb565;-dither;none;-bmp" 1011 add_bittest(djpeg rgb-islow-565D "-dct;int;-rgb565;-bmp" 1034 "-dct;int;-nosmooth;-rgb565;-dither;none;-bmp" 1039 add_bittest(djpeg 422m-ifast-565D "-dct;int;-nosmooth;-rgb565;-bmp" 1077 add_bittest(djpeg gray-islow-565 "-dct;int;-rgb565;-dither;none;-bmp" 1082 add_bittest(djpeg gray-islow-565D "-dct;int;-rgb565;-bmp" 1177 add_bittest(djpeg 420-islow-565 "-dct;int;-rgb565;-dither;none;-bmp" 1182 add_bittest(djpeg 420-islow-565D "-dct;int;-rgb565;-bmp" 1188 "-dct;int;-nosmooth;-rgb565;-dither;none;-bmp" 1193 add_bittest(djpeg 420m-islow-565D "-dct;int;-nosmooth;-rgb565;-bmp"
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_emit.c | 166 uint16_t rgb565; member 217 e->rgb565 = 0; in setup_border_colors() 291 e->rgb565 |= (int)(f_u * 0x3f) << 5; in setup_border_colors() 293 e->rgb565 |= (int)(f_u * 0x1f) << (c ? 11 : 0); in setup_border_colors()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_emit.c | 64 uint16_t rgb565; member 116 e->rgb565 = 0; in setup_border_colors() 196 e->rgb565 |= (int)(f_u * 0x3f) << 5; in setup_border_colors() 198 e->rgb565 |= (int)(f_u * 0x1f) << (c ? 11 : 0); in setup_border_colors()
|
/third_party/skia/tests/ |
D | ReadPixelsTest.cpp | 390 static const uint16_t rgb565[kNumPixels] = { variable 414 return rgb565; in five_reference_pixels()
|
/third_party/flutter/skia/src/gpu/ |
D | GrDataUtils.cpp | 176 uint16_t rgb565 = SkPack888ToRGB16(r, g, b); in fill_buffer_with_color() local 178 sk_memset16((uint16_t*) dest, rgb565, width * height); in fill_buffer_with_color()
|
/third_party/boost/libs/gil/doc/html/_sources/design/ |
D | pixel.rst.txt | 185 // define an rgb565 pixel 196 // rgb565 is compatible with bgr556.
|
/third_party/boost/libs/gil/doc/design/ |
D | pixel.rst | 185 // define an rgb565 pixel 196 // rgb565 is compatible with bgr556.
|