Home
last modified time | relevance | path

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

12345678910>>...42

/external/compiler-rt/lib/builtins/
Ddivdc3.c32 double _Complex z; in __divdc3() local
33 __real__ z = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw); in __divdc3() local
34 __imag__ z = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw); in __divdc3() local
39 __real__ z = crt_copysign(CRT_INFINITY, __c) * __a; in __divdc3() local
40 __imag__ z = crt_copysign(CRT_INFINITY, __c) * __b; in __divdc3() local
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divdc3() local
48 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divdc3() local
55 __real__ z = 0.0 * (__a * __c + __b * __d); in __divdc3() local
56 __imag__ z = 0.0 * (__b * __c - __a * __d); in __divdc3() local
Ddivxc3.c33 long double _Complex z; in __divxc3() local
34 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw); in __divxc3() local
35 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw); in __divxc3() local
40 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a; in __divxc3() local
41 __imag__ z = crt_copysignl(CRT_INFINITY, __c) * __b; in __divxc3() local
48 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divxc3() local
49 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divxc3() local
56 __real__ z = 0 * (__a * __c + __b * __d); in __divxc3() local
57 __imag__ z = 0 * (__b * __c - __a * __d); in __divxc3() local
Ddivsc3.c32 float _Complex z; in __divsc3() local
33 __real__ z = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divsc3() local
34 __imag__ z = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divsc3() local
39 __real__ z = crt_copysignf(CRT_INFINITY, __c) * __a; in __divsc3() local
40 __imag__ z = crt_copysignf(CRT_INFINITY, __c) * __b; in __divsc3() local
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divsc3() local
48 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divsc3() local
55 __real__ z = 0 * (__a * __c + __b * __d); in __divsc3() local
56 __imag__ z = 0 * (__b * __c - __a * __d); in __divsc3() local
Dmuldc3.c27 double _Complex z; in __muldc3() local
28 __real__ z = __ac - __bd; in __muldc3() local
29 __imag__ z = __ad + __bc; in __muldc3() local
68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __muldc3() local
69 __imag__ z = CRT_INFINITY * (__a * __d + __b * __c); in __muldc3() local
Dmulxc3.c29 long double _Complex z; in __mulxc3() local
30 __real__ z = __ac - __bd; in __mulxc3() local
31 __imag__ z = __ad + __bc; in __mulxc3() local
70 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __mulxc3() local
71 __imag__ z = CRT_INFINITY * (__a * __d + __b * __c); in __mulxc3() local
Dmulsc3.c27 float _Complex z; in __mulsc3() local
28 __real__ z = __ac - __bd; in __mulsc3() local
29 __imag__ z = __ad + __bc; in __mulsc3() local
68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __mulsc3() local
69 __imag__ z = CRT_INFINITY * (__a * __d + __b * __c); in __mulsc3() local
/external/clang/test/CodeGen/
Dlibcalls-complex.c12 double test_creal(double _Complex z) { in test_creal()
18 long double test_creall(double _Complex z) { in test_creall()
24 float test_crealf(double _Complex z) { in test_crealf()
30 double test_cimag(double _Complex z) { in test_cimag()
36 long double test_cimagl(double _Complex z) { in test_cimagl()
42 float test_cimagf(double _Complex z) { in test_cimagf()
Dbuiltins-multiprecision.c6 unsigned char carryin, unsigned char *z) { in test_addcb()
25 unsigned short carryin, unsigned short *z) { in test_addcs()
43 unsigned test_addc(unsigned x, unsigned y, unsigned carryin, unsigned *z) { in test_addc()
61 unsigned long carryin, unsigned long *z) { in test_addcl()
81 unsigned long long *z) { in test_addcll()
99 unsigned char carryin, unsigned char *z) { in test_subcb()
118 unsigned short carryin, unsigned short *z) { in test_subcs()
136 unsigned test_subc(unsigned x, unsigned y, unsigned carryin, unsigned *z) { in test_subc()
154 unsigned long carryin, unsigned long *z) { in test_subcl()
173 unsigned long long *z) { in test_subcll()
/external/clang/test/SemaObjC/
Darc-property-decl-attrs.m8 …id __autoreleasing z; // expected-error {{instance variables cannot have __autoreleasing ownership… field
12 @property(strong) id z; property
19 …id __autoreleasing z; // expected-error {{instance variables cannot have __autoreleasing ownership… field
23 @property(retain) id z; property
30 …id __autoreleasing z; // expected-error {{instance variables cannot have __autoreleasing ownership… field
34 @property(copy) id z; property
42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec… property
48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec… property
54 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be decla… property
60 @property(assign) __autoreleasing id z; // expected-error {{unsafe_unretained property 'z' may not … property
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
DSecP521R1Field.java15 public static void add(int[] x, int[] y, int[] z) in add()
26 public static void addOne(int[] x, int[] z) in addOne()
39 int[] z = Nat.fromBigInteger(521, x); in fromBigInteger() local
47 public static void half(int[] x, int[] z) in half()
54 public static void multiply(int[] x, int[] y, int[] z) in multiply()
61 public static void negate(int[] x, int[] z) in negate()
73 public static void reduce(int[] xx, int[] z) in reduce()
89 public static void reduce23(int[] z) in reduce23()
101 public static void square(int[] x, int[] z) in square()
108 public static void squareN(int[] x, int n, int[] z) in squareN()
[all …]
DSecP384R1Field.java24 public static void add(int[] x, int[] y, int[] z) in add()
45 public static void addOne(int[] x, int[] z) in addOne()
56 int[] z = Nat.fromBigInteger(384, x); in fromBigInteger() local
64 public static void half(int[] x, int[] z) in half()
77 public static void multiply(int[] x, int[] y, int[] z) in multiply()
84 public static void negate(int[] x, int[] z) in negate()
96 public static void reduce(int[] xx, int[] z) in reduce()
152 reduce32((int)cc, z); in reduce() local
155 public static void reduce32(int x, int[] z) in reduce32()
192 public static void square(int[] x, int[] z) in square()
[all …]
DSecP256R1Field.java21 public static void add(int[] x, int[] y, int[] z) in add()
39 public static void addOne(int[] x, int[] z) in addOne()
50 int[] z = Nat256.fromBigInteger(x); in fromBigInteger() local
58 public static void half(int[] x, int[] z) in half()
71 public static void multiply(int[] x, int[] y, int[] z) in multiply()
87 public static void negate(int[] x, int[] z) in negate()
99 public static void reduce(int[] xx, int[] z) in reduce()
145 reduce32((int)cc, z); in reduce() local
148 public static void reduce32(int x, int[] z) in reduce32()
196 public static void square(int[] x, int[] z) in square()
[all …]
DSecP224R1Field.java21 public static void add(int[] x, int[] y, int[] z) in add()
42 public static void addOne(int[] x, int[] z) in addOne()
53 int[] z = Nat224.fromBigInteger(x); in fromBigInteger() local
61 public static void half(int[] x, int[] z) in half()
74 public static void multiply(int[] x, int[] y, int[] z) in multiply()
93 public static void negate(int[] x, int[] z) in negate()
105 public static void reduce(int[] xx, int[] z) in reduce()
167 public static void reduce32(int x, int[] z) in reduce32()
201 public static void square(int[] x, int[] z) in square()
208 public static void squareN(int[] x, int n, int[] z) in squareN()
[all …]
DSecP192R1Field.java21 public static void add(int[] x, int[] y, int[] z) in add()
42 public static void addOne(int[] x, int[] z) in addOne()
53 int[] z = Nat192.fromBigInteger(x); in fromBigInteger() local
61 public static void half(int[] x, int[] z) in half()
74 public static void multiply(int[] x, int[] y, int[] z) in multiply()
93 public static void negate(int[] x, int[] z) in negate()
105 public static void reduce(int[] xx, int[] z) in reduce()
164 public static void reduce32(int x, int[] z) in reduce32()
195 public static void square(int[] x, int[] z) in square()
202 public static void squareN(int[] x, int n, int[] z) in squareN()
[all …]
DSecP256K1Field.java22 public static void add(int[] x, int[] y, int[] z) in add()
43 public static void addOne(int[] x, int[] z) in addOne()
54 int[] z = Nat256.fromBigInteger(x); in fromBigInteger() local
62 public static void half(int[] x, int[] z) in half()
75 public static void multiply(int[] x, int[] y, int[] z) in multiply()
94 public static void negate(int[] x, int[] z) in negate()
106 public static void reduce(int[] xx, int[] z) in reduce()
119 public static void reduce32(int x, int[] z) in reduce32()
128 public static void square(int[] x, int[] z) in square()
135 public static void squareN(int[] x, int n, int[] z) in squareN()
[all …]
DSecP224K1Field.java21 public static void add(int[] x, int[] y, int[] z) in add()
42 public static void addOne(int[] x, int[] z) in addOne()
53 int[] z = Nat224.fromBigInteger(x); in fromBigInteger() local
61 public static void half(int[] x, int[] z) in half()
74 public static void multiply(int[] x, int[] y, int[] z) in multiply()
93 public static void negate(int[] x, int[] z) in negate()
105 public static void reduce(int[] xx, int[] z) in reduce()
118 public static void reduce32(int x, int[] z) in reduce32()
127 public static void square(int[] x, int[] z) in square()
134 public static void squareN(int[] x, int n, int[] z) in squareN()
[all …]
DSecP192K1Field.java20 public static void add(int[] x, int[] y, int[] z) in add()
41 public static void addOne(int[] x, int[] z) in addOne()
52 int[] z = Nat192.fromBigInteger(x); in fromBigInteger() local
60 public static void half(int[] x, int[] z) in half()
73 public static void multiply(int[] x, int[] y, int[] z) in multiply()
92 public static void negate(int[] x, int[] z) in negate()
104 public static void reduce(int[] xx, int[] z) in reduce()
117 public static void reduce32(int x, int[] z) in reduce32()
126 public static void square(int[] x, int[] z) in square()
133 public static void squareN(int[] x, int n, int[] z) in squareN()
[all …]
DSecP521R1FieldElement.java68 int[] z = Nat.create(17); in add() local
75 int[] z = Nat.create(17); in addOne() local
82 int[] z = Nat.create(17); in subtract() local
89 int[] z = Nat.create(17); in multiply() local
97 int[] z = Nat.create(17); in divide() local
105 int[] z = Nat.create(17); in negate() local
112 int[] z = Nat.create(17); in square() local
120 int[] z = Nat.create(17); in invert() local
DSecP192R1FieldElement.java68 int[] z = Nat192.create(); in add() local
75 int[] z = Nat192.create(); in addOne() local
82 int[] z = Nat192.create(); in subtract() local
89 int[] z = Nat192.create(); in multiply() local
97 int[] z = Nat192.create(); in divide() local
105 int[] z = Nat192.create(); in negate() local
112 int[] z = Nat192.create(); in square() local
120 int[] z = Nat192.create(); in invert() local
DSecP256R1FieldElement.java68 int[] z = Nat256.create(); in add() local
75 int[] z = Nat256.create(); in addOne() local
82 int[] z = Nat256.create(); in subtract() local
89 int[] z = Nat256.create(); in multiply() local
97 int[] z = Nat256.create(); in divide() local
105 int[] z = Nat256.create(); in negate() local
112 int[] z = Nat256.create(); in square() local
120 int[] z = Nat256.create(); in invert() local
DSecP384R1FieldElement.java68 int[] z = Nat.create(12); in add() local
75 int[] z = Nat.create(12); in addOne() local
82 int[] z = Nat.create(12); in subtract() local
89 int[] z = Nat.create(12); in multiply() local
97 int[] z = Nat.create(12); in divide() local
105 int[] z = Nat.create(12); in negate() local
112 int[] z = Nat.create(12); in square() local
120 int[] z = Nat.create(12); in invert() local
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DNat.java11 public static int add(int len, int[] x, int[] y, int[] z) in add()
23 public static int add33At(int len, int x, int[] z, int zPos) in add33At()
35 public static int add33At(int len, int x, int[] z, int zOff, int zPos) in add33At()
47 public static int add33To(int len, int x, int[] z) in add33To()
58 public static int add33To(int len, int x, int[] z, int zOff) in add33To()
69 public static int addBothTo(int len, int[] x, int[] y, int[] z) in addBothTo()
81 public static int addBothTo(int len, int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) in addBothTo()
93 public static int addDWordAt(int len, long x, int[] z, int zPos) in addDWordAt()
105 public static int addDWordAt(int len, long x, int[] z, int zOff, int zPos) in addDWordAt()
117 public static int addDWordTo(int len, long x, int[] z) in addDWordTo()
[all …]
/external/v8/test/mjsunit/regress/
Dregress-1229.js32 function foo1(x, y, z) { argument
38 function foo2(x, y, z) { argument
44 function foo3(x, y, z) { argument
56 function f1(y, z) { argument
60 function f2(y, z) { argument
64 function f3(y, z) { argument
69 function g1(z, y) { argument
73 function g2(z, y, x) { argument
77 function g3(z, y, x) { argument
133 function bar(x, y, z) { argument
/external/mesa3d/src/mesa/main/
Drastpos.c49 rasterpos(GLfloat x, GLfloat y, GLfloat z, GLfloat w) in rasterpos()
94 _mesa_RasterPos3d(GLdouble x, GLdouble y, GLdouble z) in _mesa_RasterPos3d()
100 _mesa_RasterPos3f(GLfloat x, GLfloat y, GLfloat z) in _mesa_RasterPos3f()
106 _mesa_RasterPos3i(GLint x, GLint y, GLint z) in _mesa_RasterPos3i()
112 _mesa_RasterPos3s(GLshort x, GLshort y, GLshort z) in _mesa_RasterPos3s()
118 _mesa_RasterPos4d(GLdouble x, GLdouble y, GLdouble z, GLdouble w) in _mesa_RasterPos4d()
124 _mesa_RasterPos4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) in _mesa_RasterPos4f()
130 _mesa_RasterPos4i(GLint x, GLint y, GLint z, GLint w) in _mesa_RasterPos4i()
136 _mesa_RasterPos4s(GLshort x, GLshort y, GLshort z, GLshort w) in _mesa_RasterPos4s()
226 window_pos3f(GLfloat x, GLfloat y, GLfloat z) in window_pos3f()
[all …]
/external/ceres-solver/internal/ceres/
Djet_test.cc53 J z; in MakeJet() local
78 J z = exp(x); in TEST() local
86 J z = x * y; in TEST() local
94 J z = x * x; in TEST() local
102 J z = sqrt(y); in TEST() local
110 J z = cos(J(2.0) * x); in TEST() local
118 J z = sin(J(2.0) * x); in TEST() local
126 J z = cos(x) * cos(x); in TEST() local
146 J z = tan(x); in TEST() local
154 J z = tan(atan(x)); in TEST() local
[all …]

12345678910>>...42