/third_party/ffmpeg/libavfilter/ |
D | vf_yadif_cuda.cu | 107 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 …]
|
D | vf_chromakey.c | 126 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()
|
D | vf_scale_cuda_bicubic.cu | 93 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()
|
D | vf_scale_cuda.cu | 27 using subsample_function_t = T (*)(cudaTextureObject_t tex, int xo, int yo, 65 __device__ static inline void N(cudaTextureObject_t src_tex[4], T *dst[4], int xo, int yo, \ 70 subsample_func_##m(src_tex[plane], xo, yo, \ 80 dst[n][yo*FIXED_PITCH+xo] 996 int xo, int yo, in Subsample_Nearest() argument 1004 float yi = (yo + 0.5f) * vscale; in Subsample_Nearest() 1011 int xo, int yo, in Subsample_Bilinear() argument 1019 float yi = (yo + 0.5f) * vscale; in Subsample_Bilinear() 1042 int xo, int yo, in Subsample_Bicubic() argument 1050 float yi = (yo + 0.5f) * vscale - 0.5f; in Subsample_Bicubic() [all …]
|
/third_party/mesa3d/src/intel/isl/ |
D | isl_tiled_memcpy.c | 261 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/ |
D | shared.js | 56 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/ |
D | topLevel.types | 17 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
|
D | literalTypesAndDestructuring.types | 64 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"
|
D | exportDefaultNamespace.types | 9 someFunc.someProp = 'yo'; 10 >someFunc.someProp = 'yo' : "yo" 14 >'yo' : "yo"
|
D | prototypeOnConstructorFunctions.types | 14 i.const.prototype.prop = "yo"; 15 >i.const.prototype.prop = "yo" : "yo" 23 >"yo" : "yo"
|
D | primitiveMembers.types | 6 var r = /yo/; 8 >/yo/ : RegExp 64 var s: String = "yo"; 66 >"yo" : "yo"
|
D | topLevel.js | 9 public move(xo:number,yo:number) { 11 this.y+=yo; 36 Point.prototype.move = function (xo, yo) { argument 38 this.y += yo;
|
D | overloadingOnConstants1.types | 43 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"
|
D | constructorOverloads4.types | 30 M.Function("yo"); 31 >M.Function("yo") : any 35 >"yo" : "yo"
|
D | topLevel.symbols | 20 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))
|
D | declFileEmitDeclarationOnlyError1.types | 2 var hello = "yo!"; 4 >"yo!" : "yo!"
|
D | declFileEmitDeclarationOnlyError2.types | 2 var hello = "yo!"; 4 >"yo!" : "yo!"
|
D | interfaceMemberValidation.symbols | 6 interface i2 extends i1 { name: number; yo: string; } 10 >yo : Symbol(i2.yo, Decl(interfaceMemberValidation.ts, 1, 39))
|
D | objectLiteralEnumPropertyNames.types | 55 >{ ['a']: 'yo', ['b']: 'ye'} : { a: string; b: string; } 57 ['a']: 'yo', 60 >'yo' : "yo"
|
D | interfaceMemberValidation.types | 5 interface i2 extends i1 { name: number; yo: string; } 7 >yo : string
|
D | literalTypesAndDestructuring.symbols | 57 bar: 'yo' | 'ha' | undefined; 61 let { bar = 'yo' } = {} as Foo; 65 bar; // "yo" | "ha"
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | ssim.c | 65 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/typescript/tests/cases/compiler/ |
D | topLevel.ts | 8 public move(xo:number,yo:number) { 10 this.y+=yo;
|
/third_party/skia/third_party/externals/libwebp/extras/ |
D | get_disto.c | 136 int xo, int yo, int W, int H) { in SSIMGetClipped() argument 138 const int ymin = (yo - SSIM_KERNEL < 0) ? 0 : yo - SSIM_KERNEL; in SSIMGetClipped() 139 const int ymax = (yo + SSIM_KERNEL > H - 1) ? H - 1 : yo + SSIM_KERNEL; in SSIMGetClipped() 148 * kWeight[SSIM_KERNEL + y - yo]; in SSIMGetClipped()
|
/third_party/skia/third_party/externals/icu/source/data/translit/ |
D | yo_yo_BJ.txt | 20 # MINIMAL FILTER: yo-yo-BJ
|