Home
last modified time | relevance | path

Searched refs:Kb (Results 1 – 25 of 53) sorted by relevance

123

/third_party/skia/src/core/
DSkYUVMath.cpp239 float Kr, Kb; member
261 const float Kb = c.Kb; in make_rgb_to_yuv_matrix() local
262 const float Kg = 1.0f - Kr - Kb; in make_rgb_to_yuv_matrix()
263 const float Cr = 0.5f / (1.0f - Kb); in make_rgb_to_yuv_matrix()
281 Kr, Kg, Kb, 0, addY, in make_rgb_to_yuv_matrix()
282 -Kr, -Kg, 1-Kb, 0, addUV, in make_rgb_to_yuv_matrix()
283 1-Kr, -Kg, -Kb, 0, addUV, in make_rgb_to_yuv_matrix()
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_blend_color.txt73 DST_COLOR (Rd/Kr, Gd/Kg, Bd/Kb, Ad/Ka)
74 ONE_MINUS_DST_COLOR (1, 1, 1, 1) - (Rd/Kr,Gd/Kg,Bd/Kb,Ad/Ka)
87 number of bits in the A color component. Kr, Kg, and Kb are similarly
95 SRC_COLOR (Rs/Kr, Gs/Kg, Bs/Kb, As/Ka)
96 ONE_MINUS_SRC_COLOR (1, 1, 1, 1) - (Rs/Kr,Gs/Kg,Bs/Kb,As/Ka)
108 m is the number of bits in the A color component. Kr, Kg, and Kb
113 color. These blend factors are not scaled by Kr, Kg, Kb, and Ka,
DEXT_blend_func_separate.txt66 DST_COLOR (Rd/Kr, Gd/Kg, Bd/Kb) Ad/Ka
67 ONE_MINUS_DST_COLOR (1-Rd/Kr, 1-Gd/Kg, 1-Bd/Kb) 1-Ad/Ka
82 SRC_COLOR (Rs/Kr, Gs/Kg, Bs/Kb) As/Ka
83 ONE_MINUS_SRC_COLOR (1-Rs/Kr, 1-Gs/Kg, 1-Bs/Kb) 1-As/Ka
/third_party/openGLES/extensions/EXT/
DEXT_blend_color.txt73 DST_COLOR (Rd/Kr, Gd/Kg, Bd/Kb, Ad/Ka)
74 ONE_MINUS_DST_COLOR (1, 1, 1, 1) - (Rd/Kr,Gd/Kg,Bd/Kb,Ad/Ka)
87 number of bits in the A color component. Kr, Kg, and Kb are similarly
95 SRC_COLOR (Rs/Kr, Gs/Kg, Bs/Kb, As/Ka)
96 ONE_MINUS_SRC_COLOR (1, 1, 1, 1) - (Rs/Kr,Gs/Kg,Bs/Kb,As/Ka)
108 m is the number of bits in the A color component. Kr, Kg, and Kb
113 color. These blend factors are not scaled by Kr, Kg, Kb, and Ka,
DEXT_blend_func_separate.txt66 DST_COLOR (Rd/Kr, Gd/Kg, Bd/Kb) Ad/Ka
67 ONE_MINUS_DST_COLOR (1-Rd/Kr, 1-Gd/Kg, 1-Bd/Kb) 1-Ad/Ka
82 SRC_COLOR (Rs/Kr, Gs/Kg, Bs/Kb) As/Ka
83 ONE_MINUS_SRC_COLOR (1-Rs/Kr, 1-Gs/Kg, 1-Bs/Kb) 1-As/Ka
/third_party/ffmpeg/libavutil/
Dcamellia.c184 …generate_round_keys(AVCAMELLIA *cs, uint64_t Kl[2], uint64_t Kr[2], uint64_t Ka[2], uint64_t Kb[2]) in generate_round_keys()
191 Kd[3] = Kb; in generate_round_keys()
354 uint64_t Kl[2], Kr[2], Ka[2], Kb[2]; in av_camellia_init() local
358 memset(Kb, 0, sizeof(Kb)); in av_camellia_init()
386 Kb[0] = D1; in av_camellia_init()
387 Kb[1] = D2; in av_camellia_init()
389 generate_round_keys(cs, Kl, Kr, Ka, Kb); in av_camellia_init()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-color.c360 gdouble * Kb) in gst_video_color_matrix_get_Kr_Kb() argument
373 *Kb = 0.11; in gst_video_color_matrix_get_Kr_Kb()
377 *Kb = 0.0722; in gst_video_color_matrix_get_Kr_Kb()
381 *Kb = 0.1140; in gst_video_color_matrix_get_Kr_Kb()
385 *Kb = 0.087; in gst_video_color_matrix_get_Kr_Kb()
389 *Kb = 0.0593; in gst_video_color_matrix_get_Kr_Kb()
392 GST_DEBUG ("matrix: %d, Kr %f, Kb %f", matrix, *Kr, *Kb); in gst_video_color_matrix_get_Kr_Kb()
Dvideo-color.h71 gboolean gst_video_color_matrix_get_Kr_Kb (GstVideoColorMatrix matrix, gdouble * Kr, gdouble * Kb);
Dvideo-converter.c1025 color_matrix_YCbCr_to_RGB (MatrixData * m, double Kr, double Kb) in color_matrix_YCbCr_to_RGB() argument
1027 double Kg = 1.0 - Kr - Kb; in color_matrix_YCbCr_to_RGB()
1031 {1., -2 * Kb * (1 - Kb) / Kg, -2 * Kr * (1 - Kr) / Kg, 0.}, in color_matrix_YCbCr_to_RGB()
1032 {1., 2 * (1 - Kb), 0., 0.}, in color_matrix_YCbCr_to_RGB()
1041 color_matrix_RGB_to_YCbCr (MatrixData * m, double Kr, double Kb) in color_matrix_RGB_to_YCbCr() argument
1043 double Kg = 1.0 - Kr - Kb; in color_matrix_RGB_to_YCbCr()
1049 k.dm[0][2] = Kb; in color_matrix_RGB_to_YCbCr()
1052 x = 1 / (2 * (1 - Kb)); in color_matrix_RGB_to_YCbCr()
1055 k.dm[1][2] = x * (1 - Kb); in color_matrix_RGB_to_YCbCr()
1061 k.dm[2][2] = -x * Kb; in color_matrix_RGB_to_YCbCr()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/vulkan/
Dvkcolorconvert.c251 matrix_YCbCr_to_RGB (Matrix4 * m, double Kr, double Kb) in matrix_YCbCr_to_RGB() argument
253 double Kg = 1.0 - Kr - Kb; in matrix_YCbCr_to_RGB()
257 {1., -2 * Kb * (1 - Kb) / Kg, -2 * Kr * (1 - Kr) / Kg, 0.}, in matrix_YCbCr_to_RGB()
258 {1., 2 * (1 - Kb), 0., 0.}, in matrix_YCbCr_to_RGB()
304 gdouble Kr, Kb; in convert_to_RGB() local
306 if (gst_video_color_matrix_get_Kr_Kb (info->colorimetry.matrix, &Kr, &Kb)) in convert_to_RGB()
307 matrix_YCbCr_to_RGB (m, Kr, Kb); in convert_to_RGB()
314 matrix_RGB_to_YCbCr (Matrix4 * m, double Kr, double Kb) in matrix_RGB_to_YCbCr() argument
316 double Kg = 1.0 - Kr - Kb; in matrix_RGB_to_YCbCr()
322 k.dm[0][2] = Kb; in matrix_RGB_to_YCbCr()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dcuda-converter.c1567 color_matrix_YCbCr_to_RGB (MatrixData * m, gdouble Kr, gdouble Kb) in color_matrix_YCbCr_to_RGB() argument
1569 gdouble Kg = 1.0 - Kr - Kb; in color_matrix_YCbCr_to_RGB()
1573 {1., -2 * Kb * (1 - Kb) / Kg, -2 * Kr * (1 - Kr) / Kg, 0.}, in color_matrix_YCbCr_to_RGB()
1574 {1., 2 * (1 - Kb), 0., 0.}, in color_matrix_YCbCr_to_RGB()
1583 color_matrix_RGB_to_YCbCr (MatrixData * m, gdouble Kr, gdouble Kb) in color_matrix_RGB_to_YCbCr() argument
1585 gdouble Kg = 1.0 - Kr - Kb; in color_matrix_RGB_to_YCbCr()
1591 k.dm[0][2] = Kb; in color_matrix_RGB_to_YCbCr()
1594 x = 1 / (2 * (1 - Kb)); in color_matrix_RGB_to_YCbCr()
1597 k.dm[1][2] = x * (1 - Kb); in color_matrix_RGB_to_YCbCr()
1603 k.dm[2][2] = -x * Kb; in color_matrix_RGB_to_YCbCr()
[all …]
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11converter.cpp556 color_matrix_YCbCr_to_RGB (MatrixData * m, gfloat Kr, gfloat Kb) in color_matrix_YCbCr_to_RGB() argument
558 gfloat Kg = 1.0 - Kr - Kb; in color_matrix_YCbCr_to_RGB()
562 {1., -2 * Kb * (1 - Kb) / Kg, -2 * Kr * (1 - Kr) / Kg, 0.}, in color_matrix_YCbCr_to_RGB()
563 {1., 2 * (1 - Kb), 0., 0.}, in color_matrix_YCbCr_to_RGB()
572 color_matrix_RGB_to_YCbCr (MatrixData * m, gfloat Kr, gfloat Kb) in color_matrix_RGB_to_YCbCr() argument
574 gfloat Kg = 1.0 - Kr - Kb; in color_matrix_RGB_to_YCbCr()
580 k.dm[0][2] = Kb; in color_matrix_RGB_to_YCbCr()
583 x = 1 / (2 * (1 - Kb)); in color_matrix_RGB_to_YCbCr()
586 k.dm[1][2] = x * (1 - Kb); in color_matrix_RGB_to_YCbCr()
592 k.dm[2][2] = -x * Kb; in color_matrix_RGB_to_YCbCr()
[all …]
/third_party/openssl/test/certs/
Dee-cert.pem15 xOgAExfz3Tf/pjsLaha5aWH7NyCSKWC+lYkIOJ/Kb/m/6QsDJoXsEC8AhrPfqJhz
Dee+serverAuth.pem15 xOgAExfz3Tf/pjsLaha5aWH7NyCSKWC+lYkIOJ/Kb/m/6QsDJoXsEC8AhrPfqJhz
Dee-serverAuth.pem15 xOgAExfz3Tf/pjsLaha5aWH7NyCSKWC+lYkIOJ/Kb/m/6QsDJoXsEC8AhrPfqJhz
/third_party/skia/third_party/externals/icu/source/data/brkitr/
Den.txt53 "Kb.",
/third_party/icu/icu4c/source/data/brkitr/
Den.txt53 "Kb.",
/third_party/curl/m4/
Dzz50-xc-ovr.m438 dnl script by nearly 300 Kb.
/third_party/openssl/test/
Ddane-cross.in43 xOgAExfz3Tf/pjsLaha5aWH7NyCSKWC+lYkIOJ/Kb/m/6QsDJoXsEC8AhrPfqJhz
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSamplerCore.cpp1828 float Kb = 0.114f; in sampleTexel() local
1834 Kb = 0.0722f; in sampleTexel()
1838 Kb = 0.114f; in sampleTexel()
1842 Kb = 0.0593f; in sampleTexel()
1849 const float Kg = 1.0f - Kr - Kb; in sampleTexel()
1852 const float Gb = -2 * Kb * (1 - Kb) / Kg; in sampleTexel()
1854 const float Bb = 2 * (1 - Kb); in sampleTexel()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DSamplerCore.cpp2020 float Kb = 0.114f; in sampleTexel() local
2027 Kb = 0.114f; in sampleTexel()
2032 Kb = 0.0722f; in sampleTexel()
2037 Kb = 0.114f; in sampleTexel()
2045 const float Kg = 1.0f - Kr - Kb; in sampleTexel()
2048 const float Gb = -2 * Kb * (1 - Kb) / Kg; in sampleTexel()
2050 const float Bb = 2 * (1 - Kb); in sampleTexel()
/third_party/skia/third_party/externals/opengl-registry/extensions/NVX/
DNVX_gpu_memory_info.txt128 - total available memory, total size (in Kb) of the memory
/third_party/openGLES/extensions/NVX/
DNVX_gpu_memory_info.txt128 - total available memory, total size (in Kb) of the memory
/third_party/node/doc/contributing/
Dwriting-tests.md320 throw new ERR_FS_FILE_TOO_LARGE(`${sizeKiB} Kb`);
323 // Do not include message: /^File size ([0-9]+ Kb) is greater than 2 GiB$/
/third_party/libphonenumber/javascript/i18n/phonenumbers/
Ddemo-compiled.js495 …0==c)return Ib(d,0,f,"");if(!(d in I))return f;a=P(a,d,Q(d));b=Jb(b,a,c);f=Kb(f,a,c);return Ib(d,c…
496 …r e=R(a,c),g=w(e,11);c="";p(e,17)?c=w(e,17):K(mb,g)&&(c=g);a=P(a,d,Q(d));f=Kb(f,a,1);b=Jb(b,a,1);r…
497 …n"+"+a+" "+c+d;case 3:return"tel:+"+a+"-"+c+d;default:return c+d}}function Kb(a,b,c,d){b=0==t(b,20… class
679 …=T;var ya=w(e,1),fc=O(e);if(ya in I){var gc=P(L,ya,Q(ya)),ld=Jb(e,gc,2),md=Kb(fc,gc,2,c);var hc=Ib…

123