Home
last modified time | relevance | path

Searched refs:yo (Results 1 – 25 of 828) sorted by relevance

12345678910>>...34

/third_party/ffmpeg/libavfilter/
Dvf_yadif_cuda.cu107 int yo = blockIdx.y * blockDim.y + threadIdx.y; in yadif_single() local
109 if (xo >= dst_width || yo >= dst_height) { in yadif_single()
114 if (yo % 2 == parity) { in yadif_single()
115 dst[yo*dst_pitch+xo] = tex2D<T>(cur, xo, yo); in yadif_single()
120 T a = tex2D<T>(cur, xo - 3, yo - 1); in yadif_single()
121 T b = tex2D<T>(cur, xo - 2, yo - 1); in yadif_single()
122 T c = tex2D<T>(cur, xo - 1, yo - 1); in yadif_single()
123 T d = tex2D<T>(cur, xo - 0, yo - 1); in yadif_single()
124 T e = tex2D<T>(cur, xo + 1, yo - 1); in yadif_single()
125 T f = tex2D<T>(cur, xo + 2, yo - 1); in yadif_single()
[all …]
Dvf_scale_cuda.cu33 int yo = blockIdx.y * blockDim.y + threadIdx.y; in Subsample_Nearest() local
35 if (yo < dst_height && xo < dst_width) in Subsample_Nearest()
40 float yi = (yo + 0.5f) * vscale; in Subsample_Nearest()
42 dst[yo*dst_pitch+xo] = tex2D<T>(tex, xi, yi); in Subsample_Nearest()
54 int yo = blockIdx.y * blockDim.y + threadIdx.y; in Subsample_Bilinear() local
56 if (yo < dst_height && xo < dst_width) in Subsample_Bilinear()
61 float yi = (yo + 0.5f) * vscale; in Subsample_Bilinear()
75 vec_set(dst[yo*dst_pitch+xo], r >> 2); in Subsample_Bilinear()
Dvf_chromakey.c126 int x, y, xo, yo; in do_chromakey_slice() local
134 for (yo = 0; yo < 3; ++yo) { in do_chromakey_slice()
136 …el_uv(frame, ctx->hsub_log2, ctx->vsub_log2, x + xo - 1, y + yo - 1, &u[yo * 3 + xo], &v[yo * 3 + … in do_chromakey_slice()
156 int x, y, xo, yo; in do_chromakey16_slice() local
168 for (yo = 0; yo < 3; ++yo) { in do_chromakey16_slice()
170 …16_uv(frame, ctx->hsub_log2, ctx->vsub_log2, x + xo - 1, y + yo - 1, &u[yo * 3 + xo], &v[yo * 3 + … in do_chromakey16_slice()
Dvf_scale_cuda_bicubic.cu93 int yo = blockIdx.y * blockDim.y + threadIdx.y; in Subsample_Bicubic() local
95 if (yo < dst_height && xo < dst_width) in Subsample_Bicubic()
100 float yi = (yo + 0.5f) * vscale - 0.5f; in Subsample_Bicubic()
113 dst[yo * dst_pitch + xo] = from_floatN<T, floatT>( in Subsample_Bicubic()
136 int yo = blockIdx.y * blockDim.y + threadIdx.y; in Subsample_FastBicubic() local
138 if (yo < dst_height && xo < dst_width) in Subsample_FastBicubic()
143 float yi = (yo + 0.5f) * vscale - 0.5f; in Subsample_FastBicubic()
170 dst[yo * dst_pitch + xo] = from_floatN<T, floatT>( in Subsample_FastBicubic()
/third_party/mesa3d/src/intel/isl/
Disl_tiled_memcpy.c261 uint32_t xo, yo; in linear_to_xtiled() local
265 for (yo = y0 * xtile_width; yo < y1 * xtile_width; yo += xtile_width) { in linear_to_xtiled()
272 uint32_t swizzle = ((yo >> 3) ^ (yo >> 4)) & swizzle_bit; in linear_to_xtiled()
274 mem_copy(dst + ((x0 + yo) ^ swizzle), src + x0, x1 - x0); in linear_to_xtiled()
277 mem_copy_align16(dst + ((xo + yo) ^ swizzle), src + xo, xtile_span); in linear_to_xtiled()
280 mem_copy_align16(dst + ((xo + yo) ^ swizzle), src + x2, x3 - x2); in linear_to_xtiled()
326 uint32_t x, yo; in linear_to_ytiled() local
331 for (yo = y0 * column_width; yo < y1 * column_width; yo += column_width) { in linear_to_ytiled()
335 mem_copy(dst + ((xo0 + yo) ^ swizzle0), src + x0, x1 - x0); in linear_to_ytiled()
341 mem_copy_align16(dst + ((xo + yo) ^ swizzle), src + x, ytile_span); in linear_to_ytiled()
[all …]
/third_party/skia/demos.skia.org/demos/path_performance/
Dshared.js56 for (let yo = 0; yo < PATTERN_BOUNDS; yo += PATTERN_SPACING) {
67 for (let yo = 0; yo < PATTERN_BOUNDS; yo += PATTERN_SPACING) {
68 this.svgElArray[i].style.transform = `translate(${x + xo}px, ${y + yo}px)`;
88 for (let yo = 0; yo < PATTERN_BOUNDS; yo += PATTERN_SPACING) {
90 ctx.translate(x + xo, y + yo);
127 for (let yo = 0; yo < PATTERN_BOUNDS; yo += PATTERN_SPACING) {
129 canvas.translate(x + xo, y + yo);
/third_party/typescript/tests/baselines/reference/
DtopLevel.types17 public move(xo:number,yo:number) {
18 >move : (xo: number, yo: number) => this
20 >yo : number
29 this.y+=yo;
30 >this.y+=yo : any
34 >yo : number
69 >new Point(3,4).move : (xo: number, yo: number) => Point
74 >move : (xo: number, yo: number) => Point
94 >M.origin.move : (xo: number, yo: number) => Point
98 >move : (xo: number, yo: number) => Point
DliteralTypesAndDestructuring.types64 bar: 'yo' | 'ha' | undefined;
65 >bar : "yo" | "ha" | undefined
68 let { bar = 'yo' } = {} as Foo;
69 >bar : "yo" | "ha"
70 >'yo' : "yo"
74 bar; // "yo" | "ha"
75 >bar : "yo" | "ha"
DexportDefaultNamespace.types9 someFunc.someProp = 'yo';
10 >someFunc.someProp = 'yo' : "yo"
14 >'yo' : "yo"
DprototypeOnConstructorFunctions.types14 i.const.prototype.prop = "yo";
15 >i.const.prototype.prop = "yo" : "yo"
23 >"yo" : "yo"
DtopLevel.js9 public move(xo:number,yo:number) {
11 this.y+=yo;
36 Point.prototype.move = function (xo, yo) { argument
38 this.y += yo;
DprimitiveMembers.types6 var r = /yo/;
8 >/yo/ : RegExp
64 var s: String = "yo";
66 >"yo" : "yo"
DconstructorOverloads4.types30 M.Function("yo");
31 >M.Function("yo") : any
35 >"yo" : "yo"
DdeclFileEmitDeclarationOnlyError1.types2 var hello = "yo!";
4 >"yo!" : "yo!"
DdeclFileEmitDeclarationOnlyError2.types2 var hello = "yo!";
4 >"yo!" : "yo!"
DoverloadingOnConstants1.types43 var htmlElement: Base = d2.createElement("yo")
45 >d2.createElement("yo") : Base
49 >"yo" : "yo"
76 var htmlElement2: Derived1 = d2.createElement("yo")
78 >d2.createElement("yo") : Base
82 >"yo" : "yo"
DtopLevel.symbols20 public move(xo:number,yo:number) {
23 >yo : Symbol(yo, Decl(topLevel.ts, 7, 26))
31 this.y+=yo;
35 >yo : Symbol(yo, Decl(topLevel.ts, 7, 26))
DinterfaceMemberValidation.symbols6 interface i2 extends i1 { name: number; yo: string; }
10 >yo : Symbol(i2.yo, Decl(interfaceMemberValidation.ts, 1, 39))
/third_party/gstreamer/gstplugins_bad/gst/geometrictransform/
Dgstrotate.c145 gdouble xi, yi, xo, yo; /* positions in/out x/y */ in rotate_map() local
162 yo = y - coy; in rotate_map()
163 ao = atan2 (yo, xo); in rotate_map()
164 r = sqrt (xo * xo + yo * yo); in rotate_map()
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dssim.c65 int xo, int yo, int W, int H) { in SSIMGetClipped_C() argument
67 const int ymin = (yo - VP8_SSIM_KERNEL < 0) ? 0 : yo - VP8_SSIM_KERNEL; in SSIMGetClipped_C()
68 const int ymax = (yo + VP8_SSIM_KERNEL > H - 1) ? H - 1 in SSIMGetClipped_C()
69 : yo + VP8_SSIM_KERNEL; in SSIMGetClipped_C()
79 * kWeight[VP8_SSIM_KERNEL + y - yo]; in SSIMGetClipped_C()
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Dssim.c65 int xo, int yo, int W, int H) { in SSIMGetClipped_C() argument
67 const int ymin = (yo - VP8_SSIM_KERNEL < 0) ? 0 : yo - VP8_SSIM_KERNEL; in SSIMGetClipped_C()
68 const int ymax = (yo + VP8_SSIM_KERNEL > H - 1) ? H - 1 in SSIMGetClipped_C()
69 : yo + VP8_SSIM_KERNEL; in SSIMGetClipped_C()
79 * kWeight[VP8_SSIM_KERNEL + y - yo]; in SSIMGetClipped_C()
/third_party/libjpeg-turbo/simd/powerpc/
Djdmrgext-altivec.c49 __vector short rg0, rg1, rg2, rg3, bx0, bx1, bx2, bx3, ye, yo, cbl, cbh, in jsimd_h2v1_merged_upsample_altivec() local
159 yo = (__vector signed short)vec_perm(pb_zero, y, odd_index); in jsimd_h2v1_merged_upsample_altivec()
163 bo = vec_add(b_yl, yo); in jsimd_h2v1_merged_upsample_altivec()
165 ro = vec_add(r_yl, yo); in jsimd_h2v1_merged_upsample_altivec()
167 go = vec_add(g_yl, yo); in jsimd_h2v1_merged_upsample_altivec()
170 bo = vec_add(b_yh, yo); in jsimd_h2v1_merged_upsample_altivec()
172 ro = vec_add(r_yh, yo); in jsimd_h2v1_merged_upsample_altivec()
174 go = vec_add(g_yh, yo); in jsimd_h2v1_merged_upsample_altivec()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/simd/powerpc/
Djdmrgext-altivec.c49 __vector short rg0, rg1, rg2, rg3, bx0, bx1, bx2, bx3, ye, yo, cbl, cbh, in jsimd_h2v1_merged_upsample_altivec() local
159 yo = (__vector signed short)vec_perm(pb_zero, y, odd_index); in jsimd_h2v1_merged_upsample_altivec()
163 bo = vec_add(b_yl, yo); in jsimd_h2v1_merged_upsample_altivec()
165 ro = vec_add(r_yl, yo); in jsimd_h2v1_merged_upsample_altivec()
167 go = vec_add(g_yl, yo); in jsimd_h2v1_merged_upsample_altivec()
170 bo = vec_add(b_yh, yo); in jsimd_h2v1_merged_upsample_altivec()
172 ro = vec_add(r_yh, yo); in jsimd_h2v1_merged_upsample_altivec()
174 go = vec_add(g_yh, yo); in jsimd_h2v1_merged_upsample_altivec()
/third_party/gstreamer/gstplugins_good/gst/goom/
Difs.c290 Transform (SIMI * Simi, F_PT xo, F_PT yo, F_PT * x, F_PT * y) in Transform() argument
296 yo = yo - Simi->Cy; in Transform()
297 yo = (yo * Simi->R) >> FIX; /* / UNIT; */ in Transform()
301 yy = -yo - Simi->Cy; in Transform()
304 *x = ((xo * Simi->Ct - yo * Simi->St + xx * Simi->Ct2 - yy * Simi->St2) in Transform()
306 *y = ((xo * Simi->St + yo * Simi->Ct + xx * Simi->St2 + yy * Simi->Ct2) in Transform()
313 Trace (FRACTAL * F, F_PT xo, F_PT yo, IfsData * data) in Trace() argument
320 Transform (Cur, xo, yo, &x, &y); in Trace()
328 if (F->Depth && ((x - xo) >> 4) && ((y - yo) >> 4)) { in Trace()
341 F_PT x, y, xo, yo; in Draw_Fractal() local
[all …]
/third_party/typescript/tests/cases/compiler/
DtopLevel.ts8 public move(xo:number,yo:number) {
10 this.y+=yo;

12345678910>>...34