Home
last modified time | relevance | path

Searched refs:yc (Results 1 – 25 of 49) sorted by relevance

12

/third_party/ffmpeg/libswscale/
Drgb2rgb_template.c387 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc; in yuvPlanartoyuy2_c() local
389 uint64_t k = yc[0] + (uc[0] << 8) + in yuvPlanartoyuy2_c()
390 (yc[1] << 16) + ((unsigned) vc[0] << 24); in yuvPlanartoyuy2_c()
391 uint64_t l = yc[2] + (uc[1] << 8) + in yuvPlanartoyuy2_c()
392 (yc[3] << 16) + ((unsigned) vc[1] << 24); in yuvPlanartoyuy2_c()
394 yc += 4; in yuvPlanartoyuy2_c()
401 const uint8_t *yc = ysrc, *uc = usrc, *vc = vsrc; in yuvPlanartoyuy2_c()
405 *idst++ = (yc[0] << 24) + (uc[0] << 16) + in yuvPlanartoyuy2_c()
406 (yc[1] << 8) + (vc[0] << 0); in yuvPlanartoyuy2_c()
408 *idst++ = yc[0] + (uc[0] << 8) + in yuvPlanartoyuy2_c()
[all …]
/third_party/cmsis/CMSIS/DSP/Source/TransformFunctions/
Darm_cfft_radix4_q31.c165 q31_t ya, yb, yc, yd; in arm_radix4_butterfly_q31() local
425 yc = *ptr1++; in arm_radix4_butterfly_q31()
435 ya_out = ya + yb + yc + yd; in arm_radix4_butterfly_q31()
445 yc_out = (ya - yb + yc - yd); in arm_radix4_butterfly_q31()
452 yb_out = (ya - xb - yc + xd); in arm_radix4_butterfly_q31()
459 yd_out = (ya + xb - yc - xd); in arm_radix4_butterfly_q31()
536 q31_t ya, yb, yc, yd; in arm_radix4_butterfly_inverse_q31() local
789 yc = *ptr1++; in arm_radix4_butterfly_inverse_q31()
799 ya_out = ya + yb + yc + yd; in arm_radix4_butterfly_inverse_q31()
809 yc_out = (ya - yb + yc - yd); in arm_radix4_butterfly_inverse_q31()
[all …]
/third_party/gstreamer/gstplugins_good/gst/alpha/
Dgstalphacolor.c208 gint yc[4]; \
215 memcpy (yc, matrix, 4 * sizeof (gint)); \
220 y = (data[R] * yc[0] + data[G] * yc[1] + data[B] * yc[2] + yc[3]) >> 8; \
277 gint yc[4]; in transform_ayuv_ayuv() local
287 memcpy (yc, matrix, 4 * sizeof (gint)); in transform_ayuv_ayuv()
292 y = (data[1] * yc[0] + data[2] * yc[1] + data[3] * yc[2] + yc[3]) >> 8; in transform_ayuv_ayuv()
/third_party/skia/modules/skottie/src/effects/
DDisplacementMapEffect.cpp214 yc = Coeffs(fYSelector); in buildEffectShader() local
219 xc.dr*s.x, yc.dr*s.y, 0, 0, in buildEffectShader()
220 xc.dg*s.x, yc.dg*s.y, 0, 0, in buildEffectShader()
221 xc.db*s.x, yc.db*s.y, 0, 0, in buildEffectShader()
222 xc.da*s.x, yc.da*s.y, xc.c_scale, yc.c_scale, in buildEffectShader()
231 (yc.d_offset - .5f) * s.y, in buildEffectShader()
233 yc.c_offset, in buildEffectShader()
/third_party/cef/tools/
Dissue_1999.py62 yc = get_obj_class(y)
63 if xc < yc:
65 elif xc > yc:
/third_party/ffmpeg/libavfilter/
Dvf_ciescope.c718 double * const yc) in uv_to_xy() argument
724 *yc = 2*v / (2*u - 8*v + 4); in uv_to_xy()
731 double * const yc) in upvp_to_xy() argument
737 *yc = 4*vp / (6*up - 16*vp + 12); in upvp_to_xy()
742 double yc, in xy_to_upvp() argument
749 *up = 4*xc / (- 2*xc + 12*yc + 3); in xy_to_upvp()
750 *vp = 9*yc / (- 2*xc + 12*yc + 3); in xy_to_upvp()
755 double yc, in xy_to_uv() argument
762 *u = 4*xc / (- 2*xc + 12*yc + 3); in xy_to_uv()
763 *v = 6*yc / (- 2*xc + 12*yc + 3); in xy_to_uv()
[all …]
Dvf_curves.c266 const double yc = point->next->y; in interpolate() local
268 r[i] = 6 * ((yn-yc)/h[i] - (yc-yp)/h[i-1]); in interpolate()
304 const double yc = point->y; in interpolate() local
307 const double a = yc; in interpolate()
308 const double b = (yn-yc)/h[i] - h[i]*r[i]/2. - h[i]*(r[i+1]-r[i])/6.; in interpolate()
Dvf_signalstats.c233 const int yc = y >> s->vsub; in filter8_brng() local
235 const uint8_t *pchromau = &in->data[1][yc * in->linesize[1]]; in filter8_brng()
236 const uint8_t *pchromav = &in->data[2][yc * in->linesize[2]]; in filter8_brng()
268 const int yc = y >> s->vsub; in filter16_brng() local
270 const uint16_t *pchromau = (uint16_t *)&in->data[1][yc * in->linesize[1]]; in filter16_brng()
271 const uint16_t *pchromav = (uint16_t *)&in->data[2][yc * in->linesize[2]]; in filter16_brng()
Dvsrc_testsrc.c793 int yc = (s->h >> 2); in test2_fill_picture() local
812 int y = av_rescale(yh, i, steps) + yc; in test2_fill_picture()
826 int yc = (s->h >> 2) + (s->h >> 1); in test2_fill_picture() local
829 int ym1 = ff_draw_round_to_sub(&s->draw, 1, -1, yc - 8); in test2_fill_picture()
830 int ym2 = ff_draw_round_to_sub(&s->draw, 1, +1, yc + 8); in test2_fill_picture()
842 y1 = ff_draw_round_to_sub(&s->draw, 1, -1, yc - 4 - size); in test2_fill_picture()
843 y2 = ff_draw_round_to_sub(&s->draw, 1, +1, yc + 4 + size); in test2_fill_picture()
/third_party/lzma/CPP/7zip/UI/GUI/
DExtractDialog.rc5 #define yc 168
69 #undef yc
72 #define yc 128
/third_party/lzma/CPP/7zip/UI/FileManager/
DOverwriteDialog.rc5 #define yc 200
48 #undef yc
52 #define yc 144
DProgressDialog.rc5 #define yc 44
DPasswordDialog.rc5 #define yc 72
DProgressDialog2a.rc40 #define yc (z0 + z0s + bys)
/third_party/lzma/CPP/7zip/
DGuiCommon.rc18 #undef yc
44 #define ys (yc + m + m)
/third_party/openssl/test/ocsp-tests/
DND2.ors6 sPv9gtl3KLUZyR+NbGMIa5/bpoJp0yg1z5VL6CLMusy3AF6Cn2fyaioDxG+yc+gA
DWINH_ND2.ors6 sPv9gtl3KLUZyR+NbGMIa5/bpoJp0yg1z5VL6CLMusy3AF6Cn2fyaioDxG+yc+gA
DWRID_ND2.ors6 sPv9gtl3KLUZyR+NbGMIa5/bpoJp0yg1z5VL6CLMusy3AF6Cn2fyaioDxG+yc+gA
DWIKH_ND2.ors6 sPv9gtl3KLUZyR+NbGMIa5/bpoJp0yg1z5VL6CLMusy3AF6Cn2fyaioDxG+yc+gA
/third_party/python/Lib/
D_pydecimal.py2116 yc, ye = y.int, y.exp
2117 while yc % 10 == 0:
2118 yc //= 10
2124 xe *= yc
2183 e = _decimal_lshift_exact(e * yc, ye)
2184 xe = _decimal_lshift_exact(xe * yc, ye)
2210 e = _decimal_lshift_exact(e * yc, ye)
2211 xe = _decimal_lshift_exact(xe * yc, ye)
2228 m, n = yc*10**ye, 1
2230 if xe != 0 and len(str(abs(yc*xe))) <= -ye:
[all …]
/third_party/openssl/test/smime-certs/
Dsmdh.pem27 yc+W9V6gp855/1EEeBDplOdnUS3mIswLBgcCggEAVWAlod+cFUlh9pCHU3KhVknn
/third_party/lzma/CPP/7zip/Bundles/SFXWin/
Dresource.rc11 #define yc 64
/third_party/python/Doc/tools/
Dsusp-ignored.csv14 faq/programming,,:chr,">=4.0) or 1+f(xc,yc,x*x-y*y+xc,2.0*x*y+yc,k-1,f):f(xc,yc,x,y,k,f):chr("
16 faq/programming,,:reduce,"Sx=Sx,Sy=Sy:reduce(lambda x,y:x+y,map(lambda x,xc=Ru,yc=yc,Ru=Ru,Ro=Ro,"
/third_party/typescript/tests/baselines/reference/
DhugeDeclarationOutputGetsTruncatedWithError.types6 …" | "xs" | "xt" | "xu" | "xv" | "xw" | "xx" | "xy" | "xz" | "ya" | "yb" | "yc" | "yd" | "ye" | "yf…
9yc: "aa.yc"; yd: "aa.yd"; ye: "aa.ye"; yf: "aa.yf"; yg: "aa.yg"; yh: "aa.yh"; yi: "aa.yi"; yj: "aa…
10yc: "aa.yc"; yd: "aa.yd"; ye: "aa.ye"; yf: "aa.yf"; yg: "aa.yg"; yh: "aa.yh"; yi: "aa.yi"; yj: "aa…
DhugeDeclarationOutputGTruncatedWithError.ts.types6 …" | "xs" | "xt" | "xu" | "xv" | "xw" | "xx" | "xy" | "xz" | "ya" | "yb" | "yc" | "yd" | "ye" | "yf…
9yc: "aa.yc"; yd: "aa.yd"; ye: "aa.ye"; yf: "aa.yf"; yg: "aa.yg"; yh: "aa.yh"; yi: "aa.yi"; yj: "aa…
10yc: "aa.yc"; yd: "aa.yd"; ye: "aa.ye"; yf: "aa.yf"; yg: "aa.yg"; yh: "aa.yh"; yi: "aa.yi"; yj: "aa…

12