Home
last modified time | relevance | path

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

12345678910>>...16

/NextBSD/contrib/compiler-rt/lib/builtins/
HDdivxc3.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
HDdivsc3.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
HDdivdc3.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
HDmultc3.c27 long double _Complex z; in __multc3() local
28 __real__ z = ac - bd; in __multc3() local
29 __imag__ z = ad + bc; in __multc3() local
63 __real__ z = CRT_INFINITY * (a * c - b * d); in __multc3() local
64 __imag__ z = CRT_INFINITY * (a * d + b * c); in __multc3() local
HDmulsc3.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
HDmuldc3.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
HDmulxc3.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
/NextBSD/tools/test/testfloat/
HDsystfloat.c33 float32 z; in syst_int32_to_float32() local
42 float64 z; in syst_int32_to_float64() local
53 floatx80 z; in syst_int32_to_floatx80() local
66 float128 z; in syst_int32_to_float128() local
79 float32 z; in syst_int64_to_float32() local
88 float64 z; in syst_int64_to_float64() local
99 floatx80 z; in syst_int64_to_floatx80() local
112 float128 z; in syst_int64_to_float128() local
143 float64 z; in syst_float32_to_float64() local
154 floatx80 z; in syst_float32_to_floatx80() local
[all …]
HDtestCases.c174 int32 z; in int32NextP1() local
193 int32 z; in int32NextP2() local
570 int64 z; in int64NextP1() local
589 int64 z; in int64NextP2() local
957 float32 z; in float32NextQInP1() local
980 float32 z; in float32NextQOutP1() local
1006 float32 z; in float32NextQInP2() local
1029 float32 z; in float32NextQOutP2() local
1146 #define SETFLOAT64( z, zHigh, zLow ) z = ( ( (float64) zHigh )<<32 ) | zLow argument
1148 #define SETFLOAT64( z, zHigh, zLow ) z.low = zLow; z.high = zHigh argument
[all …]
/NextBSD/contrib/ldns/
HDzone.c17 ldns_zone_soa(const ldns_zone *z) in ldns_zone_soa()
23 ldns_zone_rr_count(const ldns_zone *z) in ldns_zone_rr_count()
29 ldns_zone_set_soa(ldns_zone *z, ldns_rr *soa) in ldns_zone_set_soa()
35 ldns_zone_rrs(const ldns_zone *z) in ldns_zone_rrs()
41 ldns_zone_set_rrs(ldns_zone *z, ldns_rr_list *rrlist) in ldns_zone_set_rrs()
47 ldns_zone_push_rr_list(ldns_zone *z, ldns_rr_list *list) in ldns_zone_push_rr_list()
54 ldns_zone_push_rr(ldns_zone *z, ldns_rr *rr) in ldns_zone_push_rr()
66 ldns_zone_glue_rr_list(const ldns_zone *z) in ldns_zone_glue_rr_list()
168 ldns_zone *z; in ldns_zone_new() local
188 ldns_zone_new_frm_fp(ldns_zone **z, FILE *fp, ldns_rdf *origin, uint32_t ttl, ldns_rr_class c) in ldns_zone_new_frm_fp()
[all …]
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
HDzfs_znode.h87 #define SA_ZPL_ATIME(z) z->z_attr_table[ZPL_ATIME] argument
88 #define SA_ZPL_MTIME(z) z->z_attr_table[ZPL_MTIME] argument
89 #define SA_ZPL_CTIME(z) z->z_attr_table[ZPL_CTIME] argument
90 #define SA_ZPL_CRTIME(z) z->z_attr_table[ZPL_CRTIME] argument
91 #define SA_ZPL_GEN(z) z->z_attr_table[ZPL_GEN] argument
92 #define SA_ZPL_DACL_ACES(z) z->z_attr_table[ZPL_DACL_ACES] argument
93 #define SA_ZPL_XATTR(z) z->z_attr_table[ZPL_XATTR] argument
94 #define SA_ZPL_SYMLINK(z) z->z_attr_table[ZPL_SYMLINK] argument
95 #define SA_ZPL_RDEV(z) z->z_attr_table[ZPL_RDEV] argument
96 #define SA_ZPL_SCANSTAMP(z) z->z_attr_table[ZPL_SCANSTAMP] argument
[all …]
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/sys/
HDdebug.h110 #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
111 #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
112 #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument
116 #define ASSERT3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) argument
117 #define ASSERT3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) argument
118 #define ASSERT3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) argument
121 #define ASSERT3S(x, y, z) ((void)0) argument
122 #define ASSERT3U(x, y, z) ((void)0) argument
123 #define ASSERT3P(x, y, z) ((void)0) argument
/NextBSD/lib/msun/tests/
HDctrig_test.c59 #define test_p(func, z, result, exceptmask, excepts, checksign) do { \ argument
73 #define test_p_tol(func, z, result, tol) do { \ argument
81 #define test(func, z, result, exceptmask, excepts, checksign) do { \ argument
85 #define test_tol(func, z, result, tol) do { \ argument
89 #define test_odd_tol(func, z, result, tol) do { \ argument
93 #define test_even_tol(func, z, result, tol) do { \ argument
152 long double complex z; in test_nan() local
231 long double complex z, c, s; in test_inf() local
298 long double complex z; in test_axes() local
398 long double complex z; in test_small() local
[all …]
HDinvctrig_test.c59 #define test_p(func, z, result, exceptmask, excepts, checksign) do { \ argument
72 #define test_p_tol(func, z, result, tol) do { \ argument
80 #define test(func, z, result, exceptmask, excepts, checksign) do { \ argument
84 #define test_tol(func, z, result, tol) do { \ argument
150 long double complex z; in test_nan() local
228 long double complex z; in test_inf() local
278 long double complex z; in test_axes() local
318 complex long double z; in test_small() local
/NextBSD/contrib/netbsd-tests/lib/libm/
HDt_pow.c79 double z; in ATF_TC_BODY() local
119 double z; in ATF_TC_BODY() local
145 double z; in ATF_TC_BODY() local
171 double z; in ATF_TC_BODY() local
225 const double z = 0.0L / 0.0L; in ATF_TC_BODY() local
250 double z; in ATF_TC_BODY() local
320 const double z = 0.0L / 0.0L; in ATF_TC_BODY() local
381 float z; in ATF_TC_BODY() local
423 float z; in ATF_TC_BODY() local
449 float z; in ATF_TC_BODY() local
[all …]
/NextBSD/contrib/unbound/services/
HDlocalzone.c73 struct local_zone* z = (struct local_zone*)n->key; in lzdel() local
89 local_zone_delete(struct local_zone* z) in local_zone_delete()
144 struct local_zone* z = (struct local_zone*)calloc(1, sizeof(*z)); in local_zone_create() local
171 struct local_zone* z = local_zone_create(nm, len, labs, t, c); in lz_enter_zone_dname() local
196 struct local_zone* z; in lz_enter_zone() local
374 lz_find_node(struct local_zone* z, uint8_t* nm, size_t nmlen, int nmlabs) in lz_find_node()
386 lz_find_create_node(struct local_zone* z, uint8_t* nm, size_t nmlen, in lz_find_create_node()
422 lz_enter_rr_into_zone(struct local_zone* z, const char* rrstr) in lz_enter_rr_into_zone()
487 struct local_zone* z; in lz_enter_rr_str() local
513 struct local_zone* z; in lz_enter_zones() local
[all …]
/NextBSD/contrib/jemalloc/include/jemalloc/internal/
HDjemalloc_internal_macros.h41 #define ZU(z) ((size_t)z) argument
42 #define ZI(z) ((ssize_t)z) argument
46 #define KZU(z) ZU(z##ULL) argument
47 #define KZI(z) ZI(z##LL) argument
/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/uctf/
HDtst.chasestrings.c32 has_princess(zelda_info_t *z) in has_princess()
38 has_dungeons(zelda_info_t *z) in has_dungeons()
44 has_villain(zelda_info_t *z) in has_villain()
/NextBSD/contrib/wpa/src/crypto/
HDmd5-internal.c191 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
192 #define F2(x, y, z) F1(z, x, y) argument
193 #define F3(x, y, z) (x ^ y ^ z) argument
194 #define F4(x, y, z) (y ^ (x | ~z)) argument
197 #define MD5STEP(f, w, x, y, z, data, s) \ argument
/NextBSD/contrib/ntp/lib/isc/
HDsha1.c107 #define R0(v,w,x,y,z,i) \ argument
110 #define R1(v,w,x,y,z,i) \ argument
113 #define R2(v,w,x,y,z,i) \ argument
116 #define R3(v,w,x,y,z,i) \ argument
119 #define R4(v,w,x,y,z,i) \ argument
140 #define nR0(v,w,x,y,z,i) R0(*v,*w,*x,*y,*z,i) argument
141 #define nR1(v,w,x,y,z,i) R1(*v,*w,*x,*y,*z,i) argument
142 #define nR2(v,w,x,y,z,i) R2(*v,*w,*x,*y,*z,i) argument
143 #define nR3(v,w,x,y,z,i) R3(*v,*w,*x,*y,*z,i) argument
144 #define nR4(v,w,x,y,z,i) R4(*v,*w,*x,*y,*z,i) argument
HDmd5.c106 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
107 #define F2(x, y, z) F1(z, x, y) argument
108 #define F3(x, y, z) (x ^ y ^ z) argument
109 #define F4(x, y, z) (y ^ (x | ~z)) argument
113 #define MD5STEP(f,w,x,y,z,in,s) \ argument
/NextBSD/contrib/compiler-rt/lib/builtins/ppc/
HDdivtc3.c91 long double _Complex z; in __divtc3() local
92 __real__ z = real.ld; in __divtc3() local
93 __imag__ z = imag.ld; in __divtc3() local
HDmultc3.c89 long double _Complex z; in __multc3() local
90 __real__ z = real.ld; in __multc3() local
91 __imag__ z = imag.ld; in __multc3() local
/NextBSD/contrib/diff/lib/
HDunlocked-io.h69 # define fgets(x,y,z) fgets_unlocked (x,y,z) argument
71 # define fgets_unlocked(x,y,z) fgets (x,y,z) argument
87 # define fread(w,x,y,z) fread_unlocked (w,x,y,z) argument
89 # define fread_unlocked(w,x,y,z) fread (w,x,y,z) argument
93 # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z) argument
95 # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z) argument
/NextBSD/lib/msun/src/
HDcatrigf.c146 casinhf(float complex z) in casinhf()
193 casinf(float complex z) in casinf()
201 cacosf(float complex z) in cacosf()
260 cacoshf(float complex z) in cacoshf()
278 clog_for_large_values(float complex z) in clog_for_large_values()
339 catanhf(float complex z) in catanhf()
388 catanf(float complex z) in catanf()

12345678910>>...16