Home
last modified time | relevance | path

Searched defs:z (Results 1 – 25 of 2339) sorted by relevance

12345678910>>...94

/third_party/ffmpeg/libavcodec/ppc/
Dfft_vsx.c35 static void fft32_vsx_interleave(FFTComplex *z) in fft32_vsx_interleave()
43 static void fft64_vsx_interleave(FFTComplex *z) in fft64_vsx_interleave()
50 static void fft128_vsx_interleave(FFTComplex *z) in fft128_vsx_interleave()
57 static void fft256_vsx_interleave(FFTComplex *z) in fft256_vsx_interleave()
64 static void fft512_vsx_interleave(FFTComplex *z) in fft512_vsx_interleave()
71 static void fft1024_vsx_interleave(FFTComplex *z) in fft1024_vsx_interleave()
79 static void fft2048_vsx_interleave(FFTComplex *z) in fft2048_vsx_interleave()
86 static void fft4096_vsx_interleave(FFTComplex *z) in fft4096_vsx_interleave()
93 static void fft8192_vsx_interleave(FFTComplex *z) in fft8192_vsx_interleave()
100 static void fft16384_vsx_interleave(FFTComplex *z) in fft16384_vsx_interleave()
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dextended_min_max.inl10 T const & z)
20 typename C<T>::T const & z
31 C<T> const & z
42 T const & z,
54 typename C<T>::T const & z,
66 C<T> const & z,
77 T const & z)
87 typename C<T>::T const & z
98 C<T> const & z
109 T const & z,
[all …]
/third_party/typescript/tests/baselines/reference/
DintersectionTypeNormalization.js37 var z: Z1; variable
38 var z: Z2; variable
39 var z: Z3; variable
40 var z: Z4; variable
115 var z; variable
116 var z; variable
117 var z; variable
118 var z; variable
DintersectionTypeEquivalence.js11 var z : A & B & C; variable
12 var z : (A & B) & C; variable
13 var z : A & (B & C); variable
25 var z; variable
26 var z; variable
27 var z; variable
DcapturedParametersInInitializers1.js8 function foo2(y = function(x: typeof z) {}, z = 1) {
14 function foo3(y = { x: <typeof z>a }, z = 1) { argument
19 function foo4(y = {z}, z = 1) { field
23 function foo5(y = (() => z)(), z = 1) { argument
27 function foo6(y = () => (() => z)(), z = 1) { argument
31 function foo7(y = (function*() {yield z})(), z = 1) { argument
35 function foo8(y = (async () => z)(), z = 1) { argument
39 function foo9(y = {[z]() { return z; }}, z = 1) { argument
69 function foo4(y = { z }, z = 1) { field
Dfatarrowfunctions.js27 var z = (x:number) => x*x; function
51 foo(function (x, y, z) { return x + y + z; }); argument
52 foo(function (x, y, z) { return x + y + z; }); argument
53 foo(function (x, y, z) { return x + y + z; }); argument
54 foo(function (x, y, z) { return x + y + z; }); argument
55 foo(function (x, y, z) { return x + y + z; }); argument
57 foo(function (x, y, z) { return x + y + z; }); argument
58 foo(function (x, y, z) { return x + y + z; }); argument
59 foo(function (x, y, z) { return x + y + z; }); argument
60 foo(function (x, y, z) { return x + y + z; }); argument
[all …]
DinitializePropertiesWithRenamedLet.js9 var x, y, z; variable
13 let z; variable
14 ({ z: z } = { z: 0 }); property
15 ({ z } = { z: 0 }); property
25 var x, y, z; variable
30 (z_1 = { z: 0 }.z); property
31 (z_1 = { z: 0 }.z); property
DdestructuringParameterDeclaration2.js20 function b1(z = null, o = { x: 0, y: undefined }) { } argument
21 function b2([a, z, y] = [undefined, null, undefined]) { } argument
27 function c0({z: {x, y: {j}}}) { } property
28 function c1({z} = { z: 10 }) { } property
29 function c2({z = 10}) { } property
31 function c4([z], z: number) { } // Error Duplicate identifier
35 c0({ z: 1 }); // Error, implied type is { z: {x: any, y: {j: any}} } property
37 c1({ z: true }); // Error, implied type is {z:number}? property
38 c2({ z: false }); // Error, implied type is {z?: number} property
48 function d2({x, y, z}?) { } // Error, binding pattern can't be optional in implementation signature field
[all …]
DoptionalBindingParameters2.js2 function foo({ x, y, z }?: { x: string; y: number; z: boolean }) { field
6 foo({ x: "", y: 0, z: false }); property
8 foo({ x: false, y: 0, z: "" }); property
14 foo({ x: "", y: 0, z: false }); property
15 foo({ x: false, y: 0, z: "" }); property
Des5-asyncFunctionHoisting.js6 function z() { function
30 function z() { function
58 function z() { function
80 function z() { function
DmultiCallOverloads.js8 var f1: ICallback = function(z?) {} argument
9 var f2: ICallback = function(z?) {} argument
13 load(function(z?) {}) // this shouldn't be an error argument
23 load(function (z) { }); // this shouldn't be an error argument
DoptionalBindingParametersInOverloads2.js2 function foo({ x, y, z }?: { x: string; y: number; z: boolean }); field
7 foo({ x: "", y: 0, z: false }); property
9 foo({ x: false, y: 0, z: "" }); property
18 foo({ x: "", y: 0, z: false }); property
19 foo({ x: false, y: 0, z: "" }); property
DduplicateVariablesWithAny.js17 var z: any; variable
18 var z; // ok variable
33 var z; variable
34 var z; // ok variable
DfunctionLiteral.js13 var z: { new (x: number): number; }; variable
14 var z: new (x: number) => number; variable
23 var z; variable
24 var z; variable
DdestructuringParameterDeclaration1ES6.js22 function b1(z = [undefined, null]) { }; argument
23 function b2(z = null, o = { x: 0, y: undefined }) { } argument
24 function b3({z: {x, y: {j}}} = { z: { x: "hi", y: { j: 1 } } }) { } property
30 function b6([a, z, y] = [undefined, null, undefined]) { } argument
40 function c0({z: {x, y: {j}}}) { } property
41 function c1({z} = { z: 10 }) { } property
42 function c2({z = 10}) { } property
47 c0({z : { x: 1, y: { j: "world" } }}); // Implied type is { z: {x: any, y: {j: any}} } property
48 c0({z : { x: "string", y: { j: true } }}); // Implied type is { z: {x: any, y: {j: any}} } property
51 c1({ z: 1 }) // Implied type is {z:number}? property
[all …]
DdestructuringCatch.js17 throw [{ x: [0], z: 1 }]; property
19 catch ([{x: [y], z}]) { field
47 throw [{ x: [0], z: 1 }]; property
50 var _d = _c[0], y = _d.x[0], z = _d.z; variable
DoptionalArgsWithDefaultValues.js2 function foo(x: number, y?:boolean=false, z?=0) {} argument
5 public foo(x: number, y?:boolean=false, z?=0) {} argument
6 static foo2(x: number, y?:boolean=false, z?=0) {} argument
20 CCC.prototype.foo = function (x, y, z) { argument
24 CCC.foo2 = function (x, y, z) { argument
DunionTypeEquivalence.js13 var z : string | number | boolean; variable
14 var z : (string | number) | boolean; variable
15 var z : string | (number | boolean); variable
58 var z; variable
59 var z; variable
60 var z; variable
/third_party/python/Modules/
Dcmathmodule.c182 #define SPECIAL_VALUE(z, table) \ argument
218 cmath_acos_impl(PyObject *module, Py_complex z) in cmath_acos_impl()
261 cmath_acosh_impl(PyObject *module, Py_complex z) in cmath_acosh_impl()
293 cmath_asin_impl(PyObject *module, Py_complex z) in cmath_asin_impl()
316 cmath_asinh_impl(PyObject *module, Py_complex z) in cmath_asinh_impl()
354 cmath_atan_impl(PyObject *module, Py_complex z) in cmath_atan_impl()
370 c_atan2(Py_complex z) in c_atan2()
407 cmath_atanh_impl(PyObject *module, Py_complex z) in cmath_atanh_impl()
462 cmath_cos_impl(PyObject *module, Py_complex z) in cmath_cos_impl()
484 cmath_cosh_impl(PyObject *module, Py_complex z) in cmath_cosh_impl()
[all …]
/third_party/python/Modules/clinic/
Dcmathmodule.c.h21 Py_complex z; in cmath_acos() local
63 Py_complex z; in cmath_acosh() local
105 Py_complex z; in cmath_asin() local
147 Py_complex z; in cmath_asinh() local
189 Py_complex z; in cmath_atan() local
231 Py_complex z; in cmath_atanh() local
273 Py_complex z; in cmath_cos() local
315 Py_complex z; in cmath_cosh() local
357 Py_complex z; in cmath_exp() local
399 Py_complex z; in cmath_log10() local
[all …]
/third_party/typescript/tests/cases/conformance/types/typeRelationships/comparable/
DtypeAssertionsWithUnionTypes01.ts11 var z: I1 = x; variable
13 var a = <number | I2>z; variable
14 var b = <number>z; variable
15 var c = <I2>z; variable
DtypeAssertionsWithIntersectionTypes01.ts15 var z: I2 = x; variable
17 var a = <I1 & I3>z; variable
18 var b = <I3>z; variable
19 var c = <I2>z; variable
/third_party/typescript/tests/cases/compiler/
DbestCommonTypeWithOptionalProperties.ts7 var z: Z; variable
10 var b1 = [x, y, z]; variable
11 var b2 = [x, z, y]; variable
12 var b3 = [y, x, z]; variable
13 var b4 = [y, z, x]; variable
/third_party/ltp/pan/
Dzoolib.c117 int zoo_close(zoo_t z) in zoo_close()
130 static int zoo_mark(zoo_t z, char *entry) in zoo_mark()
186 int zoo_mark_cmdline(zoo_t z, pid_t p, char *tag, char *cmdline) in zoo_mark_cmdline()
194 int zoo_mark_args(zoo_t z, pid_t p, char *tag, int ac, char **av) in zoo_mark_args()
206 int zoo_clear(zoo_t z, pid_t p) in zoo_clear()
263 pid_t zoo_getpid(zoo_t z, char *tag) in zoo_getpid()
298 int zoo_lock(zoo_t z) in zoo_lock()
334 int zoo_unlock(zoo_t z) in zoo_unlock()
398 void zt_add(zoo_t z, int n) in zt_add()
/third_party/mesa3d/src/util/format/
Du_format_tests.c43 #define PACKED_3x8(x, y, z) {x, y, z, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} argument
44 #define PACKED_4x8(x, y, z, w) {x, y, z, w, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} argument
50 #define PACKED_3x16(x, y, z) {(x) >> 8, (x) & 0xff, (y) >> 8, (y) & 0xff, (z) >> 8, (z) & 0xff, … argument
51 #define PACKED_4x16(x, y, z, w) {(x) >> 8, (x) & 0xff, (y) >> 8, (y) & 0xff, (z) >> 8, (z) & 0xff, … argument
55 #define PACKED_3x16(x, y, z) {(x) & 0xff, (x) >> 8, (y) & 0xff, (y) >> 8, (z) & 0xff, (z) >> 8, … argument
56 #define PACKED_4x16(x, y, z, w) {(x) & 0xff, (x) >> 8, (y) & 0xff, (y) >> 8, (z) & 0xff, (z) >> 8, … argument
62 #define PACKED_3x32(x, y, z) {(x) >> 24, ((x) >> 16) & 0xff, ((x) >> 8) & 0xff, (x) & 0xff, (y) … argument
63 #define PACKED_4x32(x, y, z, w) {(x) >> 24, ((x) >> 16) & 0xff, ((x) >> 8) & 0xff, (x) & 0xff, (y) … argument
67 #define PACKED_3x32(x, y, z) {(x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, (x) >> 24, (y) … argument
68 #define PACKED_4x32(x, y, z, w) {(x) & 0xff, ((x) >> 8) & 0xff, ((x) >> 16) & 0xff, (x) >> 24, (y) … argument

12345678910>>...94