Home
last modified time | relevance | path

Searched refs:src_g (Results 1 – 15 of 15) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dutvideodsp.c26 uint8_t *src_g, in restore_rgb_planes_c() argument
39 g = src_g[i]; in restore_rgb_planes_c()
45 src_g += linesize_g; in restore_rgb_planes_c()
51 uint16_t *src_g, in restore_rgb_planes10_c() argument
64 g = src_g[i]; in restore_rgb_planes10_c()
70 src_g += linesize_g; in restore_rgb_planes10_c()
Dutvideodsp.h28 void (*restore_rgb_planes)(uint8_t *src_r, uint8_t *src_g, uint8_t *src_b,
31 void (*restore_rgb_planes10)(uint16_t *src_r, uint16_t *src_g, uint16_t *src_b,
/third_party/ffmpeg/libavcodec/x86/
Dutvideodsp_init.c28 void ff_restore_rgb_planes_sse2(uint8_t *src_r, uint8_t *src_g, uint8_t *src_b,
31 void ff_restore_rgb_planes_avx2(uint8_t *src_r, uint8_t *src_g, uint8_t *src_b,
35 void ff_restore_rgb_planes10_sse2(uint16_t *src_r, uint16_t *src_g, uint16_t *src_b,
38 void ff_restore_rgb_planes10_avx2(uint16_t *src_r, uint16_t *src_g, uint16_t *src_b,
Dutvideodsp.asm34 ; void restore_rgb_planes(uint8_t *src_r, uint8_t *src_g, uint8_t *src_b,
39 cglobal restore_rgb_planes, 7 + ARCH_X86_64, 7 + ARCH_X86_64 * 2, 4, src_r, src_g, src_b, linesize_…
47 DEFINE_ARGS src_r, src_g, src_b, linesize_r, linesize_g, linesize_b, x
84 ; void restore_rgb_planes10(uint16_t *src_r, uint16_t *src_g, uint16_t *src_b,
89 cglobal restore_rgb_planes10, 7 + ARCH_X86_64, 7 + ARCH_X86_64 * 2, 5, src_r, src_g, src_b, linesiz…
102 DEFINE_ARGS src_r, src_g, src_b, linesize_r, linesize_g, linesize_b, x
/third_party/ffmpeg/libavfilter/
Dvf_dctdnoiz.c443 const float *src_g = src[1]; in color_correlation() local
449 … dstp[r] = av_clip_uint8(src_r[x] * DCT3X3_0_0 + src_g[x] * DCT3X3_1_0 + src_b[x] * DCT3X3_2_0); in color_correlation()
451 … dstp[b] = av_clip_uint8(src_r[x] * DCT3X3_0_2 + src_g[x] * DCT3X3_1_2 + src_b[x] * DCT3X3_2_2); in color_correlation()
456 src_g += src_linesize; in color_correlation()
512 const float *src_g = src[1]; in color_correlation_gbrp() local
520 … dstp_r[x] = av_clip_uint8(src_r[x] * DCT3X3_0_0 + src_g[x] * DCT3X3_1_0 + src_b[x] * DCT3X3_2_0); in color_correlation_gbrp()
522 … dstp_b[x] = av_clip_uint8(src_r[x] * DCT3X3_0_2 + src_g[x] * DCT3X3_1_2 + src_b[x] * DCT3X3_2_2); in color_correlation_gbrp()
528 src_g += src_linesize; in color_correlation_gbrp()
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dformat_utils.h583 simd4scalari src_g = _simd_extractf128_si(src_rg, 1); in Transpose() local
587 simd4scalari rg0 = SIMD128::unpacklo_epi16(src_r, src_g); in Transpose()
588 simd4scalari rg1 = SIMD128::unpackhi_epi16(src_r, src_g); in Transpose()
658 simd4scalari src_g = _simd_extractf128_si(src_rg, 1); in Transpose() local
662 simd4scalari rg0 = SIMD128::unpacklo_epi16(src_r, src_g); in Transpose()
663 simd4scalari rg1 = SIMD128::unpackhi_epi16(src_r, src_g); in Transpose()
/third_party/flutter/skia/third_party/externals/libwebp/examples/
Danim_diff.c45 const int src_g = (src >> 8) & 0xff; in PixelsAreSimilar() local
53 (abs(src_g * src_a - dst_g * dst_a) <= (max_allowed_diff * 255)) && in PixelsAreSimilar()
/third_party/skia/third_party/externals/libwebp/examples/
Danim_diff.c45 const int src_g = (src >> 8) & 0xff; in PixelsAreSimilar() local
53 (abs(src_g * src_a - dst_g * dst_a) <= (max_allowed_diff * 255)) && in PixelsAreSimilar()
/third_party/ffmpeg/tests/checkasm/
Dutvideodsp.c64 declare_func(void, type *src_r, type *src_g, type *src_b, \
/third_party/ffmpeg/libpostproc/
Dpostprocess_altivec_template.c26 #define ALTIVEC_TRANSPOSE_8x8_SHORT(src_a,src_b,src_c,src_d,src_e,src_f,src_g,src_h) \ argument
36 tempE1 = vec_mergeh (src_c, src_g); \
37 tempF1 = vec_mergel (src_c, src_g); \
54 src_g = vec_mergeh (tempD2, tempH2); \
/third_party/skia/third_party/externals/libwebp/src/mux/
Danim_encode.c371 const int src_g = (src >> 8) & 0xff; in PixelsAreSimilar() local
380 (abs(src_g - dst_g) * dst_a <= (max_allowed_diff * 255)) && in PixelsAreSimilar()
/third_party/flutter/skia/third_party/externals/libwebp/src/mux/
Danim_encode.c374 const int src_g = (src >> 8) & 0xff; in PixelsAreSimilar() local
383 (abs(src_g - dst_g) * dst_a <= (max_allowed_diff * 255)) && in PixelsAreSimilar()
/third_party/boost/libs/gil/doc/html/
Dsearchindex.js1 …0,src1:10,src1_it:28,src2:10,src2_it:28,src:[1,2,6,7,8,10,24,28],src_b:28,src_g:28,src_it:28,src_l…
/third_party/boost/libs/gil/doc/tutorial/
Dgradient.rst420 unsigned short const* src_r, unsigned short const* src_g, unsigned short const* src_b,
424 rgb16c_planar_view_t src = planar_rgb_view (w, h, src_r, src_g, src_b, src_row_bytes);
/third_party/boost/libs/gil/doc/html/_sources/tutorial/
Dgradient.rst.txt420 unsigned short const* src_r, unsigned short const* src_g, unsigned short const* src_b,
424 rgb16c_planar_view_t src = planar_rgb_view (w, h, src_r, src_g, src_b, src_row_bytes);