Home
last modified time | relevance | path

Searched refs:rgb565 (Results 1 - 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/
H A Djdcolext-neon.c227 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 in jsimd_ycc_rgb_convert_neon()
[all...]
/third_party/skia/third_party/externals/libwebp/extras/
H A Dextras.c50 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()
H A Dextras.h39 WEBP_EXTERN int WebPImportRGB565(const uint8_t* rgb565, WebPPicture* pic);
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DSixteenBppTextureTest.cpp19 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/src/core/
H A DSkCompressedDataUtils.cpp161 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/ffmpeg/tests/fate/
H A Dpixfmt.mak8 rgb565 \
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dupsampling_neon.c131 const uint8x8x2_t rgb565 = ZIP_U8(rg, gb); \
132 vst1q_u8(out, vcombine_u8(rgb565.val[0], rgb565.val[1])); \
H A Dyuv_sse2.c157 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/
H A Dtu_util.h309 uint16_t rgb565;
364 PACK_F(rgb565, r5g6b5_unorm);
/third_party/skia/src/gpu/text/
H A DGrAtlasManager.cpp91 uint16_t* rgb565 = reinterpret_cast<uint16_t*>(dst); local
92 expand_bits(rgb565, bits, width, height, dstRB, srcRB);
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_emit.c166 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/skia/tests/
H A DReadPixelsTest.cpp390 static const uint16_t rgb565[kNumPixels] = { variable
414 return rgb565; in five_reference_pixels()
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_emit.c63 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()

Completed in 11 milliseconds