Home
last modified time | relevance | path

Searched refs:z (Results 26 – 50 of 1704) sorted by relevance

12345678910>>...69

/freebsd/lib/msun/ld128/
H A Ds_erfl.c212 r = pp0+z*(pp1+z*(pp2+z*(pp3+z*(pp4+z*(pp5+z*(pp6+z*(pp7+ in erfl()
213 z*(pp8+z*pp9)))))))); in erfl()
214 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*(qq5+z*(qq6+z*(qq7+ in erfl()
215 z*(qq8+z*qq9)))))))); in erfl()
247 r = expl(-z*z-0.5625)*expl((z-ax)*(z+ax)+R/S); in erfl()
270 r = pp0+z*(pp1+z*(pp2+z*(pp3+z*(pp4+z*(pp5+z*(pp6+z*(pp7+ in erfcl()
271 z*(pp8+z*pp9)))))))); in erfcl()
272 s = one+z*(qq1+z*(qq2+z*(qq3+z*(qq4+z*(qq5+z*(qq6+z*(qq7+ in erfcl()
273 z*(qq8+z*qq9)))))))); in erfcl()
292 z = erx+P/Q; return one+z; in erfcl()
[all …]
H A De_lgammal_r.c186 long double y,z; in sin_pil() local
194 if (z == y) in sin_pil()
200 if (z > y) { in sin_pil()
201 z -= 0.25; in sin_pil()
272 z = y*y; in lgammal_r()
273 p1 = a0+z*(a2+z*(a4+z*(a6+z*(a8+z*(a10+z*(a12+z*(a14+z*(a16+ in lgammal_r()
274 z*(a18+z*(a20+z*a22)))))))))); in lgammal_r()
275 p2 = z*(a1+z*(a3+z*(a5+z*(a7+z*(a9+z*(a11+z*(a13+z*(a15+ in lgammal_r()
276 z*(a17+z*(a19+z*(a21+z*a23))))))))))); in lgammal_r()
315 z = one/x; in lgammal_r()
[all …]
H A Dk_sinl.c47 long double z,r,v; in __kernel_sinl() local
49 z = x*x; in __kernel_sinl()
50 v = z*x; in __kernel_sinl()
51 r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*(S8+ in __kernel_sinl()
52 z*(S9+z*(S10+z*(S11+z*S12))))))))); in __kernel_sinl()
53 if(iy==0) return x+v*(S1+z*r); in __kernel_sinl()
54 else return x-((z*(half*y-v*r)-y)-v*S1); in __kernel_sinl()
H A De_powl.c199 if (floorl (z) == z) in powl()
244 z = one / z; /* z = (1/|x|) */ in powl()
249 z = (z - z) / (z - z); /* (-1)**non-int is NaN */ in powl()
252 z = -z; /* (x<0)**odd = -(|x|**odd) */ in powl()
254 return z; in powl()
376 o.value = z; in powl()
420 z = u + v; in powl()
423 t = z * z; in powl()
427 r = (z * t1) / (t1 - two) - (w + z * w); in powl()
428 z = one - (r - z); in powl()
[all …]
/freebsd/lib/msun/src/
H A De_acosf.c34 float z,p,q,r,w,s,c,df; in acosf() local
47 z = x*x; in acosf()
48 p = z*(pS0+z*(pS1+z*pS2)); in acosf()
49 q = one+z*qS1; in acosf()
54 p = z*(pS0+z*(pS1+z*pS2)); in acosf()
55 q = one+z*qS1; in acosf()
56 s = sqrtf(z); in acosf()
63 s = sqrtf(z); in acosf()
67 c = (z-df*df)/(s+df); in acosf()
68 p = z*(pS0+z*(pS1+z*pS2)); in acosf()
[all …]
H A Ds_erff.c81 float R,S,P,Q,s,y,z,r; in erff() local
95 z = x*x; in erff()
96 r = pp0+z*(pp1+z*pp2); in erff()
97 s = one+z*(qq1+z*(qq2+z*qq3)); in erff()
120 r = expf(-z*z-0.5625F)*expf((z-x)*(z+x)+R/S); in erff()
139 z = x*x; in erfcf()
140 r = pp0+z*(pp1+z*pp2); in erfcf()
141 s = one+z*(qq1+z*(qq2+z*qq3)); in erfcf()
156 z = one-erx; return z - P/Q; in erfcf()
158 z = erx+P/Q; return one+z; in erfcf()
[all …]
H A De_lgammaf_r.c85 float y,z; in sin_pif() local
92 if (z == y) in sin_pif()
98 if (z > y) { in sin_pif()
122 float nadj,p,p1,p2,q,r,t,w,y,z; in lgammaf_r() local
170 z = y*y; in lgammaf_r()
171 p1 = a0+z*(a2+z*a4); in lgammaf_r()
172 p2 = z*(a1+z*(a3+z*a5)); in lgammaf_r()
198 r += logf(z); break; in lgammaf_r()
203 z = one/x; in lgammaf_r()
204 y = z*z; in lgammaf_r()
[all …]
H A De_powf.c115 if(hy<0) z = one/z; /* z = (1/|x|) */ in powf()
118 z = (z-z)/(z-z); /* (-1)**non-int is NaN */ in powf()
120 z = -z; /* (x<0)**odd = -(|x|**odd) */ in powf()
122 return z; in powf()
207 z = p_l+p_h; in powf()
238 z = u+v; in powf()
239 w = v-(z-u); in powf()
240 t = z*z; in powf()
242 r = (z*t1)/(t1-two)-(w+z*w); in powf()
243 z = one-(r-z); in powf()
[all …]
H A De_pow.c165 if(hy<0) z = one/z; /* z = (1/|x|) */ in pow()
168 z = (z-z)/(z-z); /* (-1)**non-int is NaN */ in pow()
170 z = -z; /* (x<0)**odd = -(|x|**odd) */ in pow()
172 return z; in pow()
261 z = p_l+p_h; in pow()
295 z = u+v; in pow()
297 t = z*z; in pow()
299 r = (z*t1)/(t1-two)-(w+z*w); in pow()
300 z = one-(r-z); in pow()
307 if((j>>20)<=0) z = scalbn(z,n); /* subnormal output */ in pow()
[all …]
H A Dk_cos.c67 double hz,z,r,w; in __kernel_cos() local
69 z = x*x; in __kernel_cos()
70 w = z*z; in __kernel_cos()
71 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6)); in __kernel_cos()
72 hz = 0.5*z; in __kernel_cos()
74 return w + (((one-w)-hz) + (z*r-x*y)); in __kernel_cos()
/freebsd/lib/msun/ld80/
H A Db_tgammal.c128 p = Pa0 + z * (Pa1 + z * (Pa2 + z * (Pa3 + z * (Pa4 + z * (Pa5 + in large_gam()
129 z * (Pa6 + z * (Pa7 + z * (Pa8 + z * Pa9)))))))); in large_gam()
208 q = 1 + z * (Q1 + z * (Q2 + z * (Q3 + z * (Q4 + z * (Q5 + in ratfun_gam()
209 z * (Q6 + z * (Q7 + z * Q8))))))); in ratfun_gam()
210 p = P0 + z * (P1 + z * (P2 + z * (P3 + z * (P4 + z * (P5 + in ratfun_gam()
211 z * (P6 + z * (P7 + z * P8))))))); in ratfun_gam()
344 z = y - x; in neg_gam()
345 if (z > 0.5) in neg_gam()
346 z = 1 - z; in neg_gam()
353 z = sinpil(z); in neg_gam()
[all …]
/freebsd/contrib/ldns/
H A Dzone.c20 return z->_soa; in ldns_zone_soa()
32 z->_soa = soa; in ldns_zone_set_soa()
38 return z->_rrs; in ldns_zone_rrs()
44 z->_rrs = rrlist; in ldns_zone_set_rrs()
168 ldns_zone *z; in ldns_zone_new() local
171 if (!z) { in ldns_zone_new()
176 if (!z->_rrs) { in ldns_zone_new()
177 LDNS_FREE(z); in ldns_zone_new()
181 return z; in ldns_zone_new()
334 if (z) { in ldns_zone_new_frm_fp_l()
[all …]
/freebsd/crypto/openssl/crypto/chacha/asm/
H A Dchacha-ia64.pl95 sub @z[1]=64,$len
200 (p6) shr.u @z[0]=@z[0],@z[1] }
228 (p0) xor @z[0]=@z[0],@x[0]
238 (p$i1) xor @z[1]=@z[1],@y[1] };;
242 (p$i2) xor @z[2]=@z[2],@y[2]
247 (p$i3) xor @z[3]=@z[3],@y[3] };;
253 (p$i4) xor @z[0]=@z[0],@x[$k]
258 (p$i4) xor @z[0]=@z[0],@x[$k] };;
264 (p61) xor @z[1]=@z[1],@y[1] };;
266 (p62) xor @z[2]=@z[2],@y[2] };;
[all …]
/freebsd/lib/libc/stdlib/
H A Dtsearch.c122 z = y->rlink; in tsearch()
123 y->rlink = z->llink; in tsearch()
124 z->llink = y; in tsearch()
125 x->llink = z->rlink; in tsearch()
126 z->rlink = x; in tsearch()
127 *rootp = z; in tsearch()
131 z->balance = 0; in tsearch()
165 z->llink = x; in tsearch()
167 z->rlink = y; in tsearch()
168 *rootp = z; in tsearch()
[all …]
H A Dtdelete.c138 z = y->llink; in tdelete()
139 x->rlink = z->llink; in tdelete()
140 z->llink = x; in tdelete()
142 z->rlink = y; in tdelete()
143 *n = z; in tdelete()
147 z->balance = 0; in tdelete()
172 z = y->rlink; in tdelete()
174 z->llink = y; in tdelete()
176 z->rlink = x; in tdelete()
177 *n = z; in tdelete()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_complex_builtins.h95 double _Complex z; in __muldc3() local
98 if (_ISNANd(__real__(z)) && _ISNANd(__imag__(z))) { in __muldc3()
137 return z; in __muldc3()
145 float _Complex z; in __mulsc3() local
148 if (_ISNANf(__real__(z)) && _ISNANf(__imag__(z))) { in __mulsc3()
185 return z; in __mulsc3()
204 if (_ISNANd(__real__(z)) && _ISNANd(__imag__(z))) { in __divdc3()
222 return z; in __divdc3()
234 float _Complex z; in __divsc3() local
237 if (_ISNANf(__real__(z)) && _ISNANf(__imag__(z))) { in __divsc3()
[all …]
/freebsd/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Ddebug.h110 #define VERIFY3B(x, y, z) VERIFY3_IMPL(x, y, z, boolean_t) argument
111 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
112 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
113 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument
117 #define ASSERT3B(x, y, z) VERIFY3_IMPL(x, y, z, boolean_t) argument
118 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
119 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
120 #define ASSERT3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument
123 #define ASSERT3B(x, y, z) ((void)0) argument
124 #define ASSERT3S(x, y, z) ((void)0) argument
[all …]
/freebsd/contrib/gdtoa/
H A Dmisc.c172 ULong xi, z; local
279 ULong carry, z; local
459 z = 0;
469 z = 0;
475 if (*x1 = z)
537 ULong z; local
656 d1 = z;
733 z >>= k;
744 x[0] = z;
777 if (!z)
[all …]
/freebsd/contrib/bearssl/src/int/
H A Di31_montmul.c77 uint64_t z; in br_i31_montymul() local
81 r = z >> 31; in br_i31_montymul()
82 d[v + 0] = (uint32_t)z & 0x7FFFFFFF; in br_i31_montymul()
85 r = z >> 31; in br_i31_montymul()
86 d[v + 1] = (uint32_t)z & 0x7FFFFFFF; in br_i31_montymul()
89 r = z >> 31; in br_i31_montymul()
90 d[v + 2] = (uint32_t)z & 0x7FFFFFFF; in br_i31_montymul()
93 r = z >> 31; in br_i31_montymul()
97 uint64_t z; in br_i31_montymul() local
101 r = z >> 31; in br_i31_montymul()
[all …]
H A Di15_montmul.c140 uint32_t z; in br_i15_montymul() local
144 r = z >> 15; in br_i15_montymul()
145 d[v + 0] = z & 0x7FFF; in br_i15_montymul()
148 r = z >> 15; in br_i15_montymul()
149 d[v + 1] = z & 0x7FFF; in br_i15_montymul()
152 r = z >> 15; in br_i15_montymul()
153 d[v + 2] = z & 0x7FFF; in br_i15_montymul()
156 r = z >> 15; in br_i15_montymul()
157 d[v + 3] = z & 0x7FFF; in br_i15_montymul()
161 uint32_t z; in br_i15_montymul() local
[all …]
/freebsd/contrib/bearssl/src/ec/
H A Dec_p256_m62.c749 z = P->z[0] | P->z[1] | P->z[2] | P->z[3] | P->z[4]; in point_encode()
750 return NEQ((uint32_t)(z | z >> 32), 0); in point_encode()
936 f256_montymul(t1, P1->z, P2->z); in p256_add()
1046 f256_montymul(P1->z, P1->z, t2); in p256_add_mixed()
1114 zz = P1->z[0] | P1->z[1] | P1->z[2] | P1->z[3] | P1->z[4];
1174 f256_montymul(P1->z, P1->z, t2);
1405 f256_montymul(z[i >> 1], jac[i].z, jac[i + 1].z); in window_to_affine()
1421 f256_montymul(jac[i].z, jac[i].z, z[(i >> k) ^ 1]); in window_to_affine()
1425 f256_montymul(z[i], z[i << 1], z[(i << 1) + 1]); in window_to_affine()
1719 z = P.z[0] | P.z[1] | P.z[2] | P.z[3] | P.z[4]; in api_muladd()
[all …]
/freebsd/contrib/unbound/services/
H A Dauthzone.c423 z->node.key = z; in auth_zone_create()
513 if(z) return z; in auth_zones_find_zone()
1573 if(!z || !z->zonefile || z->zonefile[0]==0) in auth_zone_read_zonefile()
1896 apex = az_find_name(z, z->name, z->namelen); in auth_zone_zonemd_check_hash()
1988 apex = az_find_name(z, z->name, z->namelen); in auth_zone_get_soa_rrset()
2001 apex = az_find_name(z, z->name, z->namelen); in auth_zone_get_serial()
2019 apex = az_find_name(z, z->name, z->namelen); in xfr_find_soa()
2840 apex = az_find_name(z, z->name, z->namelen); in az_nsec3_param()
8023 apex = az_find_name(z, z->name, z->namelen); in auth_zone_verify_zonemd_with_key()
8125 apex = az_find_name(z, z->name, z->namelen); in zonemd_get_dnskey_from_anchor()
[all …]
/freebsd/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_comp_zlib.c48 z_stream z; in main() local
71 memset(&z, 0, sizeof(z)); in main()
72 z.next_in = buf1; in main()
73 z.avail_in = co1.dst_len; in main()
74 z.zalloc = Z_NULL; in main()
75 z.zfree = Z_NULL; in main()
76 z.opaque = 0; in main()
77 z.next_out = buf2; in main()
78 z.avail_out = sizeof(buf2); in main()
79 res = inflateInit2(&z, -15); in main()
[all …]
H A Dh_comp_zlib_rnd.c50 z_stream z; in main() local
75 memset(&z, 0, sizeof(z)); in main()
76 z.next_in = buf1; in main()
77 z.avail_in = co1.dst_len; in main()
78 z.zalloc = Z_NULL; in main()
79 z.zfree = Z_NULL; in main()
80 z.opaque = 0; in main()
81 z.next_out = buf2; in main()
82 z.avail_out = sizeof(buf2); in main()
83 res = inflateInit2(&z, -15); in main()
[all …]
/freebsd/lib/msun/tests/
H A Dinvtrig_test.c155 long double z; in ATF_TC_BODY() local
169 z = 1.23456789L; in ATF_TC_BODY()
171 test2(atan2f, 0.0, ldexpf(z, e), 0.0, 0); in ATF_TC_BODY()
172 test2(atan2f, -0.0, ldexpf(z, e), -0.0, 0); in ATF_TC_BODY()
181 test2(atan2, 0.0, ldexp(z, e), 0.0, 0); in ATF_TC_BODY()
182 test2(atan2, -0.0, ldexp(z, e), -0.0, 0); in ATF_TC_BODY()
191 test2(atan2l, 0.0, ldexpl(z, e), 0.0, 0); in ATF_TC_BODY()
192 test2(atan2l, -0.0, ldexpl(z, e), -0.0, 0); in ATF_TC_BODY()
203 test2(atan2f, ldexpf(z, e), INFINITY, 0.0, 0); in ATF_TC_BODY()
213 test2(atan2, ldexp(z, e), INFINITY, 0.0, 0); in ATF_TC_BODY()
[all …]

12345678910>>...69