Home
last modified time | relevance | path

Searched refs:z (Results 1 – 25 of 1619) sorted by relevance

12345678910>>...65

/minix3/tests/lib/libm/
H A Dt_pow.c75 double z; in ATF_TC_BODY() local
81 z = pow(x, 3.0); in ATF_TC_BODY()
83 if (isinf(z) == 0 || signbit(z) == 0) in ATF_TC_BODY()
86 z = pow(x, 4.0); in ATF_TC_BODY()
88 if (isinf(z) == 0 || signbit(z) != 0) in ATF_TC_BODY()
95 z = pow(x, -3.0); in ATF_TC_BODY()
97 if (fabs(z) > 0.0 || signbit(z) == 0) in ATF_TC_BODY()
100 z = pow(x, -4.0); in ATF_TC_BODY()
102 if (fabs(z) > 0.0 || signbit(z) != 0) in ATF_TC_BODY()
115 double z; in ATF_TC_BODY() local
[all …]
/minix3/external/bsd/tcpdump/dist/
H A Dprint-zephyr.c138 struct z_packet z; in zephyr_print() local
146 z.kind = 0; in zephyr_print()
147 z.class = 0; in zephyr_print()
148 z.inst = 0; in zephyr_print()
149 z.opcode = 0; in zephyr_print()
150 z.sender = 0; in zephyr_print()
151 z.recipient = 0; in zephyr_print()
153 memset(&z, 0, sizeof(z)); /* XXX gcc */ in zephyr_print()
167 PARSE_FIELD_STR(z.version); in zephyr_print()
169 if (strncmp(z.version, "ZEPH", 4)) in zephyr_print()
[all …]
/minix3/crypto/external/bsd/openssl/dist/crypto/cast/
H A Dc_skey.c86 CAST_LONG z[16]; in private_CAST_set_key() local
112 CAST_exp(l, Z, z, 0); in private_CAST_set_key()
113 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]]; in private_CAST_set_key()
114 CAST_exp(l, Z, z, 4); in private_CAST_set_key()
115 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]]; in private_CAST_set_key()
116 CAST_exp(l, Z, z, 8); in private_CAST_set_key()
117 l = X[1] ^ S4[z[10]] ^ S5[z[9]] ^ S6[z[11]] ^ S7[z[8]] ^ S5[x[11]]; in private_CAST_set_key()
118 CAST_exp(l, Z, z, 12); in private_CAST_set_key()
120 K[0] = S4[z[8]] ^ S5[z[9]] ^ S6[z[7]] ^ S7[z[6]] ^ S4[z[2]]; in private_CAST_set_key()
121 K[1] = S4[z[10]] ^ S5[z[11]] ^ S6[z[5]] ^ S7[z[4]] ^ S5[z[6]]; in private_CAST_set_key()
[all …]
/minix3/lib/libm/noieee_src/
H A Dn_j0.c144 double z, s,c,ss,cc,r,u,v; in j0() local
160 z = -cos(x+x); in j0()
161 if ((s*c)<zero) cc = z/ss; in j0()
162 else ss = z/cc; in j0()
170 z = (invsqrtpi*cc)/sqrt(x); in j0()
175 z = invsqrtpi*(u*cc-v*ss)/sqrt(x); in j0()
177 return z; in j0()
186 z = x*x; in j0()
187 r = z*(r02+z*(r03+z*(r04+z*r05))); in j0()
188 s = one+z*(s01+z*(s02+z*(s03+z*s04))); in j0()
[all …]
H A Dn_j1.c149 double z, s,c,ss,cc,r,u,v,y; in j1() local
166 z = cos(y+y); in j1()
167 if ((s*c)<zero) cc = z/ss; in j1()
168 else ss = z/cc; in j1()
176 z = (invsqrtpi*cc)/sqrt(y); in j1()
181 z = invsqrtpi*(u*cc-v*ss)/sqrt(y); in j1()
183 if (x < 0) return -z; in j1()
184 else return z; in j1()
189 z = x*x; in j1()
190 r = z*(r00+z*(r01+z*(r02+z*r03))); in j1()
[all …]
H A Dn_lgamma.c172 double z, p, x1; in large_lgam() local
187 z = x1*x1; in large_lgam()
188 p = pb0+z*(pb1+z*(pb2+z*(pb3+z*(pb4+z*(pb5+z*(pb6+z*pb7)))))); in large_lgam()
206 double y, z, t, r = 0, p, q, hi, lo; in small_lgam() local
217 z = t - x0_lo; in small_lgam()
218 p = r0+z*(r1+z*(r2+z*(r3+z*(r4+z*r5)))); in small_lgam()
219 q = s0+z*(s1+z*(s2+z*(s3+z*s4))); in small_lgam()
220 r = t*(z*(p/q) - x0_lo); in small_lgam()
222 z = 1.0; in small_lgam()
224 case 6: z = (y + 5); in small_lgam()
[all …]
H A Dn_expm1.c124 double z,hi,lo,c; in expm1() local
137 z=hi-(lo=k*ln2lo); in expm1()
138 c=(hi-z)-lo; in expm1()
140 if(k==0) return(z+__exp__E(z,c)); in expm1()
142 if(z< -0.25) in expm1()
143 {x=z+half;x +=__exp__E(z,c); return(x+x);} in expm1()
145 {z+=__exp__E(z,c); x=half+z; return(x+x);} in expm1()
150 { x=one-scalb(one,-k); z += __exp__E(z,c);} in expm1()
152 { x = __exp__E(z,c)-scalb(one,-k); x+=z; z=one;} in expm1()
154 { x = __exp__E(z,c)+z; z=one;} in expm1()
[all …]
H A Dn_atan2.c181 double t,z,signy,signx,hi,lo; in atan2() local
239 z = x+x; in atan2()
240 t = ( (y+y) - x ) / ( z + y ); break; in atan2()
251 z = y-x; y=y+y+y; t = x+x; in atan2()
252 t = ( (z+z)-x ) / ( t + y ); break; in atan2()
272 z = t*t; in atan2()
274 z = t*(z*(a1+z*(a2+z*(a3+z*(a4+z*(a5+z*(a6+z*(a7+z*(a8+ in atan2()
275 z*(a9+z*(a10+z*(a11+z*a12)))))))))))); in atan2()
277 z = t*(z*(a1+z*(a2+z*(a3+z*(a4+z*(a5+z*(a6+z*(a7+z*(a8+ in atan2()
278 z*(a9+z*(a10+z*a11))))))))))); in atan2()
[all …]
/minix3/lib/libm/src/
H A De_acos.c64 double z,p,q,r,w,s,c,df; in __ieee754_acos() local
79 z = x*x; in __ieee754_acos()
80 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5))))); in __ieee754_acos()
81 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acos()
85 z = (one+x)*0.5; in __ieee754_acos()
86 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5))))); in __ieee754_acos()
87 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acos()
88 s = __ieee754_sqrt(z); in __ieee754_acos()
93 z = (one-x)*0.5; in __ieee754_acos()
94 s = __ieee754_sqrt(z); in __ieee754_acos()
[all …]
H A De_acosf.c43 float z,p,q,r,w,s,c,df; in __ieee754_acosf() local
55 z = x*x; in __ieee754_acosf()
56 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5))))); in __ieee754_acosf()
57 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acosf()
61 z = (one+x)*(float)0.5; in __ieee754_acosf()
62 p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5))))); in __ieee754_acosf()
63 q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4))); in __ieee754_acosf()
64 s = __ieee754_sqrtf(z); in __ieee754_acosf()
70 z = (one-x)*(float)0.5; in __ieee754_acosf()
71 s = __ieee754_sqrtf(z); in __ieee754_acosf()
[all …]
H A De_j1.c90 double z, s,c,ss,cc,r,u,v,y; in __ieee754_j1() local
103 z = cos(y+y); in __ieee754_j1()
104 if ((s*c)>zero) cc = z/ss; in __ieee754_j1()
105 else ss = z/cc; in __ieee754_j1()
111 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(y); in __ieee754_j1()
114 z = invsqrtpi*(u*cc-v*ss)/sqrt(y); in __ieee754_j1()
116 if(hx<0) return -z; in __ieee754_j1()
117 else return z; in __ieee754_j1()
122 z = x*x; in __ieee754_j1()
123 r = z*(r00+z*(r01+z*(r02+z*r03))); in __ieee754_j1()
[all …]
H A De_j1f.c48 float z, s,c,ss,cc,r,u,v,y; in __ieee754_j1f() local
61 z = cosf(y+y); in __ieee754_j1f()
62 if ((s*c)>zero) cc = z/ss; in __ieee754_j1f()
63 else ss = z/cc; in __ieee754_j1f()
70 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(y); in __ieee754_j1f()
75 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y); in __ieee754_j1f()
77 if(hx<0) return -z; in __ieee754_j1f()
78 else return z; in __ieee754_j1f()
83 z = x*x; in __ieee754_j1f()
84 r = z*(r00+z*(r01+z*(r02+z*r03))); in __ieee754_j1f()
[all …]
H A De_j0.c89 double z, s,c,ss,cc,r,u,v; in __ieee754_j0() local
102 z = -cos(x+x); in __ieee754_j0()
103 if ((s*c)<zero) cc = z/ss; in __ieee754_j0()
104 else ss = z/cc; in __ieee754_j0()
110 if(ix>0x48000000) z = (invsqrtpi*cc)/sqrt(x); in __ieee754_j0()
113 z = invsqrtpi*(u*cc-v*ss)/sqrt(x); in __ieee754_j0()
115 return z; in __ieee754_j0()
123 z = x*x; in __ieee754_j0()
124 r = z*(R02+z*(R03+z*(R04+z*R05))); in __ieee754_j0()
125 s = one+z*(S01+z*(S02+z*(S03+z*S04))); in __ieee754_j0()
[all …]
H A De_j0f.c47 float z, s,c,ss,cc,r,u,v; in __ieee754_j0f() local
60 z = -cosf(x+x); in __ieee754_j0f()
61 if ((s*c)<zero) cc = z/ss; in __ieee754_j0f()
62 else ss = z/cc; in __ieee754_j0f()
69 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(x); in __ieee754_j0f()
74 z = invsqrtpi*(u*cc-v*ss)/sqrtf(x); in __ieee754_j0f()
76 return z; in __ieee754_j0f()
84 z = x*x; in __ieee754_j0f()
85 r = z*(R02+z*(R03+z*(R04+z*R05))); in __ieee754_j0f()
86 s = one+z*(S01+z*(S02+z*(S03+z*S04))); in __ieee754_j0f()
[all …]
H A Ds_erf.c195 double R,S,P,Q,s,y,z,r; in erf() local
209 z = x*x; in erf()
210 r = pp0+z*(pp1+z*(pp2+z*(pp3+z*pp4))); in erf()
211 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5)))); in erf()
237 z = x; in erf()
238 SET_LOW_WORD(z,0); in erf()
239 r = __ieee754_exp(-z*z-0.5625)*__ieee754_exp((z-x)*(z+x)+R/S); in erf()
247 double R,S,P,Q,s,y,z,r; in erfc() local
258 z = x*x; in erfc()
259 r = pp0+z*(pp1+z*(pp2+z*(pp3+z*pp4))); in erfc()
[all …]
H A Ds_erff.c103 float R,S,P,Q,s,y,z,r; in erff() local
118 z = x*x; in erff()
119 r = pp0+z*(pp1+z*(pp2+z*(pp3+z*pp4))); in erff()
120 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5)))); in erff()
147 SET_FLOAT_WORD(z,ix&0xfffff000); in erff()
148 r = __ieee754_expf(-z*z-(float)0.5625)*__ieee754_expf((z-x)*(z+x)+R/S); in erff()
156 float R,S,P,Q,s,y,z,r; in erfcf() local
167 z = x*x; in erfcf()
168 r = pp0+z*(pp1+z*(pp2+z*(pp3+z*pp4))); in erfcf()
169 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*qq5)))); in erfcf()
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Sema/
H A Dbool-compare.c4 void f(int x, int y, int z) { in f() argument
72 if ((a<y) > z) {} // no warning in f()
78 if ((a<y) == z) {} // no warning in f()
84 if ((a<y) != z) {} // no warning in f()
87 if ((a<y) == z) {} // no warning in f()
88 if (a>y<z) {} // no warning in f()
89 if ((a<y) > z) {} // no warning in f()
90 if((a<y)>(z<y)) {} // no warning in f()
91 if((a<y)==(z<y)){} // no warning in f()
92 if((a<y)!=(z<y)){} // no warning in f()
[all …]
/minix3/external/mit/lua/dist/src/
H A Dlzio.c27 int luaZ_fill (ZIO *z) { in luaZ_fill() argument
29 lua_State *L = z->L; in luaZ_fill()
32 buff = z->reader(L, z->data, &size); in luaZ_fill()
36 z->n = size - 1; /* discount char being returned */ in luaZ_fill()
37 z->p = buff; in luaZ_fill()
38 return cast_uchar(*(z->p++)); in luaZ_fill()
42 void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) { in luaZ_init() argument
43 z->L = L; in luaZ_init()
44 z->reader = reader; in luaZ_init()
45 z->data = data; in luaZ_init()
[all …]
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dbool-compare.cpp4 void f(int x, int y, int z) { in f() argument
85 if ((a<y) > z) {} // no warning in f()
91 if ((a<y) == z) {} // no warning in f()
97 if ((a<y) != z) {} // no warning in f()
100 if ((a<y) == z) {} // no warning in f()
101 if (a>y<z) {} // no warning in f()
102 if ((a<y) > z) {} // no warning in f()
103 if((a<y)>(z<y)) {} // no warning in f()
104 if((a<y)==(z<y)){} // no warning in f()
105 if((a<y)!=(z<y)){} // no warning in f()
[all …]
/minix3/crypto/external/bsd/netpgp/dist/src/lib/
H A Dcompress.c120 z_decompress_t *z = pgp_reader_get_arg(readinfo); in zlib_compressed_data_reader() local
125 if (z->type != PGP_C_ZIP && z->type != PGP_C_ZLIB) { in zlib_compressed_data_reader()
128 z->type); in zlib_compressed_data_reader()
132 if (z->inflate_ret == Z_STREAM_END && in zlib_compressed_data_reader()
133 z->zstream.next_out == &z->out[z->offset]) { in zlib_compressed_data_reader()
142 if (&z->out[z->offset] == z->zstream.next_out) { in zlib_compressed_data_reader()
145 z->zstream.next_out = z->out; in zlib_compressed_data_reader()
146 z->zstream.avail_out = sizeof(z->out); in zlib_compressed_data_reader()
147 z->offset = 0; in zlib_compressed_data_reader()
148 if (z->zstream.avail_in == 0) { in zlib_compressed_data_reader()
[all …]
/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Dcondition.cpp30 void if_destruct(int z) { in if_destruct() argument
37 z = 18; in if_destruct()
41 z = 17; in if_destruct()
69 void switch_destruct(int z) { in switch_destruct() argument
77 z = 19; in switch_destruct()
82 z = 20; in switch_destruct()
92 z = 27; in switch_destruct()
99 void while_destruct(int z) { in while_destruct() argument
115 z = 21; in while_destruct()
124 z = 22; in while_destruct()
[all …]
/minix3/external/bsd/llvm/dist/clang/test/CodeGen/
H A Dbuiltins-multiprecision.c6 unsigned char carryin, unsigned char *z) { in test_addcb() argument
19 *z = __builtin_addcb(x, y, carryin, &carryout); in test_addcb()
25 unsigned short carryin, unsigned short *z) { in test_addcs() argument
38 *z = __builtin_addcs(x, y, carryin, &carryout); in test_addcs()
43 unsigned test_addc(unsigned x, unsigned y, unsigned carryin, unsigned *z) { in test_addc() argument
55 *z = __builtin_addc(x, y, carryin, &carryout); in test_addc()
61 unsigned long carryin, unsigned long *z) { in test_addcl() argument
74 *z = __builtin_addcl(x, y, carryin, &carryout); in test_addcl()
81 unsigned long long *z) { in test_addcll() argument
93 *z = __builtin_addcll(x, y, carryin, &carryout); in test_addcll()
[all …]
H A Dlibcalls-complex.c12 double test_creal(double _Complex z) { in test_creal() argument
13 return creal(z); in test_creal()
18 long double test_creall(double _Complex z) { in test_creall() argument
19 return creall(z); in test_creall()
24 float test_crealf(double _Complex z) { in test_crealf() argument
25 return crealf(z); in test_crealf()
30 double test_cimag(double _Complex z) { in test_cimag() argument
31 return cimag(z); in test_cimag()
36 long double test_cimagl(double _Complex z) { in test_cimagl() argument
37 return cimagl(z); in test_cimagl()
[all …]
/minix3/external/bsd/bind/dist/contrib/zkt-1.1.3/
H A Drollover.c122 static time_t get_exptime (dki_t *key, const zconf_t *z) in get_exptime() argument
132 exptime = dki_time (key) + z->k_life; in get_exptime()
250 const zconf_t *z; in kskrollover() local
264 z = zp->conf; in kskrollover()
267 lifetime = z->k_life; /* ..use global configured lifetime */ in kskrollover()
279 if ( z->keysetdir && strcmp (z->keysetdir, "..") == 0 && is_parentdirsigned (zonelist, zp) ) in kskrollover()
281 verbmesg (2, z, "\t\tkskrollover: create new key signing key\n"); in kskrollover()
283 ksk = genfirstkey (&zp->keys, zp->dir, zp->zone, DKI_KSK, z, DKI_ACTIVE); in kskrollover()
294 if ( !create_parent_file (path, 1, z->key_ttl, ksk) ) in kskrollover()
320 parent_resign = z->resign; in kskrollover()
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/Assembler/
H A Dflags.ll7 ; CHECK: %z = add nuw i64 %x, %y
8 %z = add nuw i64 %x, %y
9 ret i64 %z
13 ; CHECK: %z = sub nuw i64 %x, %y
14 %z = sub nuw i64 %x, %y
15 ret i64 %z
19 ; CHECK: %z = mul nuw i64 %x, %y
20 %z = mul nuw i64 %x, %y
21 ret i64 %z
25 ; CHECK: %z = add nsw i64 %x, %y
[all …]

12345678910>>...65