/third_party/ffmpeg/libavcodec/ppc/ |
D | fft_vsx.c | 35 static void fft32_vsx_interleave(FFTComplex *z) in fft32_vsx_interleave() argument 37 fft16_vsx_interleave(z); in fft32_vsx_interleave() 38 fft8_vsx_interleave(z+16); in fft32_vsx_interleave() 39 fft8_vsx_interleave(z+24); in fft32_vsx_interleave() 40 pass_vsx_interleave(z,ff_cos_32,4); in fft32_vsx_interleave() 43 static void fft64_vsx_interleave(FFTComplex *z) in fft64_vsx_interleave() argument 45 fft32_vsx_interleave(z); in fft64_vsx_interleave() 46 fft16_vsx_interleave(z+32); in fft64_vsx_interleave() 47 fft16_vsx_interleave(z+48); in fft64_vsx_interleave() 48 pass_vsx_interleave(z,ff_cos_64, 8); in fft64_vsx_interleave() [all …]
|
/third_party/cups-filters/cupsfilters/ |
D | image-zoom.c | 34 static void zoom_bilinear(cups_izoom_t *z, int iy); 35 static void zoom_nearest(cups_izoom_t *z, int iy); 43 _cupsImageZoomDelete(cups_izoom_t *z) /* I - Zoom record to free */ in _cupsImageZoomDelete() argument 45 free(z->rows[0]); in _cupsImageZoomDelete() 46 free(z->rows[1]); in _cupsImageZoomDelete() 47 free(z->in); in _cupsImageZoomDelete() 48 free(z); in _cupsImageZoomDelete() 58 _cupsImageZoomFill(cups_izoom_t *z, /* I - Zoom record to fill */ in _cupsImageZoomFill() argument 61 switch (z->type) in _cupsImageZoomFill() 64 zoom_nearest(z, iy); in _cupsImageZoomFill() [all …]
|
/third_party/openh264/res/ |
D | Cisco_Absolute_Power_1280x720_30fps.yuv | 770 …z~�}||{}|||}�~~��~}~����~��~~��~~���~�����������������������������������������������… 1545 …z{||||~{|}|}}~~}~}}~}|}~��~���~~~~~~�~~~~~}}�������������~~���~���������������������… 2311 …z|zy{||{{zz{|{|~~~}|}||{{{{|}~|{}~|}|||||||}}�}}}~}}}}~�~||~�~~�~~}�~~�����������}… 3097 …z{|zxz{{{||{xy{|~~{{{~{|}~|z{|||}}zzy|{{|}{{||{|}|{{z{~}}{}|}~~}~~|~}}~~�|�~~}~�}~���… 3873 …z{||{||{z~~}|zz{||}|}~||}|||z{~~}zz{z|~}}~��~z~��~~}�~{{{}~~~~}��~~~~~~}~��~������~~~~…
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
D | inflate.c | 55 z_streamp z ) in inflateReset() argument 57 if (z == Z_NULL || z->state == Z_NULL) in inflateReset() 59 z->total_in = z->total_out = 0; in inflateReset() 60 z->msg = Z_NULL; in inflateReset() 61 z->state->mode = z->state->nowrap ? BLOCKS : METHOD; in inflateReset() 62 inflate_blocks_reset(z->state->blocks, z, Z_NULL); in inflateReset() 69 z_streamp z ) in inflateEnd() argument 71 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL) in inflateEnd() 73 if (z->state->blocks != Z_NULL) in inflateEnd() 74 inflate_blocks_free(z->state->blocks, z); in inflateEnd() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | capturedParametersInInitializers1.types | 20 function foo2(y = function(x: typeof z) {}, z = 1) { 21 >foo2 : (y?: (x: typeof z) => void, z?: number) => void 22 >y : (x: typeof z) => void 23 >function(x: typeof z) {} : (x: typeof z) => void 25 >z : number 26 >z : number 35 function foo3(y = { x: <typeof z>a }, z = 1) { 36 >foo3 : (y?: { x: number; }, z?: number) => void 38 >{ x: <typeof z>a } : { x: number; } 40 ><typeof z>a : number [all …]
|
D | nestedTypeVariableInfersLiteral.types | 17 const directUnionSingle = direct("z") 18 >directUnionSingle : Record<"z", string> 19 >direct("z") : Record<"z", string> 21 >"z" : "z" 23 const directUnionArray = direct(["z", "y"]) 24 >directUnionArray : Record<"z" | "y", string> 25 >direct(["z", "y"]) : Record<"z" | "y", string> 27 >["z", "y"] : ("z" | "y")[] 28 >"z" : "z" 31 const nestedSingle = nested({fields: "z"}) [all …]
|
D | initializePropertiesWithRenamedLet.types | 23 var x, y, z; 26 >z : any 44 let z; 45 >z : any 47 ({ z: z } = { z: 0 }); 48 >({ z: z } = { z: 0 }) : { z: number; } 49 >{ z: z } = { z: 0 } : { z: number; } 50 >{ z: z } : { z: any; } 51 >z : any 52 >z : any [all …]
|
D | fatarrowfunctions.types | 12 foo((x:number,y,z)=>{return x+y+z;}); 13 >foo((x:number,y,z)=>{return x+y+z;}) : any 15 >(x:number,y,z)=>{return x+y+z;} : (x: number, y: any, z: any) => any 18 >z : any 19 >x+y+z : any 23 >z : any 25 foo((x,y,z)=>{return x+y+z;}); 26 >foo((x,y,z)=>{return x+y+z;}) : any 28 >(x,y,z)=>{return x+y+z;} : (x: any, y: any, z: any) => any 31 >z : any [all …]
|
D | es5-asyncFunctionCallExpressions.types | 2 declare var x, y, z, a, b, c; 5 >z : any 13 await x(y, z); 14 >await x(y, z) : any 15 >x(y, z) : any 18 >z : any 24 (await x)(y, z); 25 >(await x)(y, z) : any 30 >z : any 36 x(await y, z); [all …]
|
D | fatarrowfunctions.js | 7 foo((x:number,y,z)=>{return x+y+z;}); 8 foo((x,y,z)=>{return x+y+z;}); 9 foo((x,y:number,z)=>{return x+y+z;}); 10 foo((x,y:number,z:number)=>{return x+y+z;}); 11 foo((x,y,z:number)=>{return x+y+z;}); 14 foo((x:number,y,z)=>x+y+z); 15 foo((x,y,z)=>x+y+z); 16 foo((x,y:number,z)=>{return x+y+z;}); 17 foo((x,y:number,z:number)=>{return x+y+z;}); 18 foo((x,y,z:number)=>{return x+y+z;}); [all …]
|
D | es5-asyncFunctionNewExpressions.types | 2 declare var x, y, z, a, b, c; 5 >z : any 13 await new x(y, z); 14 >await new x(y, z) : any 15 >new x(y, z) : any 18 >z : any 24 new (await x)(y, z); 25 >new (await x)(y, z) : any 30 >z : any 36 new x(await y, z); [all …]
|
D | capturedParametersInInitializers1.symbols | 17 function foo2(y = function(x: typeof z) {}, z = 1) { 21 >z : Symbol(z, Decl(capturedParametersInInitializers1.ts, 6, 43)) 22 >z : Symbol(z, Decl(capturedParametersInInitializers1.ts, 6, 43)) 30 function foo3(y = { x: <typeof z>a }, z = 1) { 34 >z : Symbol(z, Decl(capturedParametersInInitializers1.ts, 12, 37)) 36 >z : Symbol(z, Decl(capturedParametersInInitializers1.ts, 12, 37)) 41 function foo4(y = {z}, z = 1) { 44 >z : Symbol(z, Decl(capturedParametersInInitializers1.ts, 17, 19)) 45 >z : Symbol(z, Decl(capturedParametersInInitializers1.ts, 17, 22)) 49 function foo5(y = (() => z)(), z = 1) { [all …]
|
D | parserArrowFunctionExpression8(target=es3).types | 2 x ? y => ({ y }) : z => ({ z }) // Legal JS 3 >x ? y => ({ y }) : z => ({ z }) : ((y: any) => { y: any; }) | ((z: any) => { z: any; }) 10 >z => ({ z }) : (z: any) => { z: any; } 11 >z : any 12 >({ z }) : { z: any; } 13 >{ z } : { z: any; } 14 >z : any 17 x ? y => ({ y }) : z => ({ z }) 18 >x ? y => ({ y }) : z => ({ z }) : ((y: any) => { y: any; }) | ((z: any) => { z: any; }) 25 >z => ({ z }) : (z: any) => { z: any; } [all …]
|
/third_party/node/deps/openssl/openssl/crypto/cast/ |
D | c_skey.c | 35 CAST_LONG z[16]; in CAST_set_key() local 61 CAST_exp(l, Z, z, 0); in CAST_set_key() 62 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]]; in CAST_set_key() 63 CAST_exp(l, Z, z, 4); in CAST_set_key() 64 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]]; in CAST_set_key() 65 CAST_exp(l, Z, z, 8); in CAST_set_key() 66 l = X[1] ^ S4[z[10]] ^ S5[z[9]] ^ S6[z[11]] ^ S7[z[8]] ^ S5[x[11]]; in CAST_set_key() 67 CAST_exp(l, Z, z, 12); in CAST_set_key() 69 K[0] = S4[z[8]] ^ S5[z[9]] ^ S6[z[7]] ^ S7[z[6]] ^ S4[z[2]]; in CAST_set_key() 70 K[1] = S4[z[10]] ^ S5[z[11]] ^ S6[z[5]] ^ S7[z[4]] ^ S5[z[6]]; in CAST_set_key() [all …]
|
/third_party/openssl/crypto/cast/ |
D | c_skey.c | 35 CAST_LONG z[16]; in CAST_set_key() local 61 CAST_exp(l, Z, z, 0); in CAST_set_key() 62 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]]; in CAST_set_key() 63 CAST_exp(l, Z, z, 4); in CAST_set_key() 64 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]]; in CAST_set_key() 65 CAST_exp(l, Z, z, 8); in CAST_set_key() 66 l = X[1] ^ S4[z[10]] ^ S5[z[9]] ^ S6[z[11]] ^ S7[z[8]] ^ S5[x[11]]; in CAST_set_key() 67 CAST_exp(l, Z, z, 12); in CAST_set_key() 69 K[0] = S4[z[8]] ^ S5[z[9]] ^ S6[z[7]] ^ S7[z[6]] ^ S4[z[2]]; in CAST_set_key() 70 K[1] = S4[z[10]] ^ S5[z[11]] ^ S6[z[5]] ^ S7[z[4]] ^ S5[z[6]]; in CAST_set_key() [all …]
|
/third_party/musl/src/math/ |
D | j1f.c | 27 double z,s,c,ss,cc; in common() local 36 z = cosf(2*x); in common() 38 cc = z/ss; in common() 40 ss = z/cc; in common() 66 float z,r,s; in j1f() local 78 z = x*x; in j1f() 79 r = z*(r00+z*(r01+z*(r02+z*r03))); in j1f() 80 s = 1+z*(s01+z*(s02+z*(s03+z*(s04+z*s05)))); in j1f() 81 z = 0.5f + r/s; in j1f() 83 z = 0.5f; in j1f() [all …]
|
D | j1.c | 67 double z,s,c,ss,cc; in common() local 85 z = cos(2*x); in common() 87 cc = z/ss; in common() 89 ss = z/cc; in common() 115 double z,r,s; in j1() local 127 z = x*x; in j1() 128 r = z*(r00+z*(r01+z*(r02+z*r03))); in j1() 129 s = 1+z*(s01+z*(s02+z*(s03+z*(s04+z*s05)))); in j1() 130 z = r/s; in j1() 133 z = x; in j1() [all …]
|
D | j0.c | 68 double s,c,ss,cc,z; in common() local 86 z = -cos(2*x); in common() 88 cc = z/ss; in common() 90 ss = z/cc; in common() 113 double z,r,s; in j0() local 132 z = x*x; in j0() 133 r = z*(R02+z*(R03+z*(R04+z*R05))); in j0() 134 s = 1+z*(S01+z*(S02+z*(S03+z*S04))); in j0() 135 return (1+x/2)*(1-x/2) + z*(r/s); in j0() 161 double z,u,v; in y0() local [all …]
|
D | j0f.c | 27 float z,s,c,ss,cc; in common() local 39 z = -cosf(2*x); in common() 41 cc = z/ss; in common() 43 ss = z/cc; in common() 66 float z,r,s; in j0f() local 81 z = x*x; in j0f() 82 r = z*(R02+z*(R03+z*(R04+z*R05))); in j0f() 83 s = 1+z*(S01+z*(S02+z*(S03+z*S04))); in j0f() 84 return (1+x/2)*(1-x/2) + z*(r/s); in j0f() 106 float z,u,v; in y0f() local [all …]
|
D | __invtrigl.c | 24 long double __invtrigl_R(long double z) in __invtrigl_R() argument 27 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*(pS5+z*pS6)))))); in __invtrigl_R() 28 q = 1.0+z*(qS1+z*(qS2+z*(qS3+z*(qS4+z*qS5)))); in __invtrigl_R() 56 long double __invtrigl_R(long double z) in __invtrigl_R() argument 59 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*(pS5+z*(pS6+z*(pS7+z*(pS8+z*pS9))))))))); in __invtrigl_R() 60 q = 1.0+z*(qS1+z*(qS2+z*(qS3+z*(qS4+z*(qS5+z*(qS6+z*(qS7+z*(qS8+z*qS9)))))))); in __invtrigl_R()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | j1f.c | 27 double z,s,c,ss,cc; in common() local 36 z = cosf(2*x); in common() 38 cc = z/ss; in common() 40 ss = z/cc; in common() 66 float z,r,s; in j1f() local 78 z = x*x; in j1f() 79 r = z*(r00+z*(r01+z*(r02+z*r03))); in j1f() 80 s = 1+z*(s01+z*(s02+z*(s03+z*(s04+z*s05)))); in j1f() 81 z = 0.5f + r/s; in j1f() 83 z = 0.5f; in j1f() [all …]
|
D | j1.c | 67 double z,s,c,ss,cc; in common() local 85 z = cos(2*x); in common() 87 cc = z/ss; in common() 89 ss = z/cc; in common() 115 double z,r,s; in j1() local 127 z = x*x; in j1() 128 r = z*(r00+z*(r01+z*(r02+z*r03))); in j1() 129 s = 1+z*(s01+z*(s02+z*(s03+z*(s04+z*s05)))); in j1() 130 z = r/s; in j1() 133 z = x; in j1() [all …]
|
D | j0.c | 68 double s,c,ss,cc,z; in common() local 86 z = -cos(2*x); in common() 88 cc = z/ss; in common() 90 ss = z/cc; in common() 113 double z,r,s; in j0() local 132 z = x*x; in j0() 133 r = z*(R02+z*(R03+z*(R04+z*R05))); in j0() 134 s = 1+z*(S01+z*(S02+z*(S03+z*S04))); in j0() 135 return (1+x/2)*(1-x/2) + z*(r/s); in j0() 161 double z,u,v; in y0() local [all …]
|
D | j0f.c | 27 float z,s,c,ss,cc; in common() local 39 z = -cosf(2*x); in common() 41 cc = z/ss; in common() 43 ss = z/cc; in common() 66 float z,r,s; in j0f() local 81 z = x*x; in j0f() 82 r = z*(R02+z*(R03+z*(R04+z*R05))); in j0f() 83 s = 1+z*(S01+z*(S02+z*(S03+z*S04))); in j0f() 84 return (1+x/2)*(1-x/2) + z*(r/s); in j0f() 106 float z,u,v; in y0f() local [all …]
|
D | __invtrigl.c | 24 long double __invtrigl_R(long double z) in __invtrigl_R() argument 27 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*(pS5+z*pS6)))))); in __invtrigl_R() 28 q = 1.0+z*(qS1+z*(qS2+z*(qS3+z*(qS4+z*qS5)))); in __invtrigl_R() 56 long double __invtrigl_R(long double z) in __invtrigl_R() argument 59 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*(pS5+z*(pS6+z*(pS7+z*(pS8+z*pS9))))))))); in __invtrigl_R() 60 q = 1.0+z*(qS1+z*(qS2+z*(qS3+z*(qS4+z*(qS5+z*(qS6+z*(qS7+z*(qS8+z*qS9)))))))); in __invtrigl_R()
|