Home
last modified time | relevance | path

Searched refs:zz (Results 1 – 25 of 73) sorted by relevance

123

/netbsd-src/lib/libm/complex/
H A Dcasin.c44 double complex ca, ct, zz, z2; in __weak_alias() local
110 zz = (x - y) * (x + y) + (2.0 * x * y) * I; in __weak_alias()
112 zz = 1.0 - creal(zz) - cimag(zz) * I; in __weak_alias()
113 z2 = csqrt(zz); in __weak_alias()
115 zz = ct + z2; in __weak_alias()
116 zz = clog(zz); in __weak_alias()
118 w = zz * (-1.0 * I); in __weak_alias()
H A Dcasinl.c44 long double complex ca, ct, zz, z2; in __weak_alias() local
110 zz = (x - y) * (x + y) + (2.0L * x * y) * I; in __weak_alias()
112 zz = 1.0L - creall(zz) - cimagl(zz) * I; in __weak_alias()
113 z2 = csqrtl(zz); in __weak_alias()
115 zz = ct + z2; in __weak_alias()
116 zz = clogl(zz); in __weak_alias()
118 w = zz * (-1.0L * I); in __weak_alias()
H A Dcasinf.c44 float complex ca, ct, zz, z2; in __weak_alias() local
110 zz = (x - y) * (x + y) + (2.0f * x * y) * I; in __weak_alias()
112 zz = 1.0f - crealf(zz) - cimagf(zz) * I; in __weak_alias()
113 z2 = csqrtf(zz); in __weak_alias()
115 zz = ct + z2; in __weak_alias()
116 zz = clogf(zz); in __weak_alias()
118 w = zz * (-1.0f * I); in __weak_alias()
/netbsd-src/external/bsd/bzip2/dist/
H A Dhuffman.c37 Int32 zz, tmp; \
38 zz = z; tmp = heap[zz]; \
39 while (weight[tmp] < weight[heap[zz >> 1]]) { \
40 heap[zz] = heap[zz >> 1]; \
41 zz >>= 1; \
43 heap[zz] = tmp; \
48 Int32 zz, yy, tmp; \
49 zz = z; tmp = heap[zz]; \
51 yy = zz << 1; \
57 heap[zz] = heap[yy]; \
[all …]
H A Dblocksort.c207 #define SET_BH(zz) bhtab[(zz) >> 5] |= ((UInt32)1 << ((zz) & 31)) argument
208 #define CLEAR_BH(zz) bhtab[(zz) >> 5] &= ~((UInt32)1 << ((zz) & 31)) argument
209 #define ISSET_BH(zz) (bhtab[(zz) >> 5] & ((UInt32)1 << ((zz) & 31))) argument
210 #define WORD_BH(zz) bhtab[(zz) >> 5] argument
211 #define UNALIGNED_BH(zz) ((zz) & 0x01f) argument
/netbsd-src/external/lgpl3/mpfr/dist/tests/
H A Dtset.c279 mpfr_t u, v, zz, z; in test_set_1_2() local
283 mpfr_inits2 (16, u, v, zz, (mpfr_ptr) 0); in test_set_1_2()
288 inex = mpfr_add (zz, u, v, MPFR_RNDN); in test_set_1_2()
291 MPFR_ASSERTN(mpfr_equal_p (zz, u)); in test_set_1_2()
292 inex = mpfr_set_1_2 (z, zz, MPFR_RNDN, inex); in test_set_1_2()
297 mpfr_clears (u, v, zz, z, (mpfr_ptr) 0); in test_set_1_2()
304 mpfr_inits2 (32, u, v, zz, (mpfr_ptr) 0); in test_set_1_2()
309 inex = mpfr_add (zz, u, v, MPFR_RNDN); in test_set_1_2()
312 MPFR_ASSERTN(mpfr_equal_p (zz, u)); in test_set_1_2()
313 inex = mpfr_set_1_2 (z, zz, MPFR_RNDN, inex); in test_set_1_2()
[all …]
H A Dtmul.c55 mpfr_t xx, yy, zz; in check() local
59 mpfr_init2 (zz, pz); in check()
62 test_mul(zz, xx, yy, rnd_mode); in check()
63 if (mpfr_cmp_str1 (zz, res) ) in check()
68 mpfr_out_str (stdout, 10, 0, zz, MPFR_RNDN); in check()
74 mpfr_clear (zz); in check()
80 mpfr_t xx, yy, zz; in check53() local
82 mpfr_inits2 (53, xx, yy, zz, (mpfr_ptr) 0); in check53()
85 test_mul (zz, xx, yy, rnd_mode); in check53()
86 if (mpfr_cmp_str1 (zz, zs) ) in check53()
[all …]
H A Dtadd_ui.c31 mpfr_t xx, zz; in check3() local
33 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0); in check3()
35 mpfr_add_ui (zz, xx, y, rnd_mode); in check3()
36 if (mpfr_cmp_str1(zz, zs) ) in check3()
39 mpfr_out_str(stdout, 10, 0, zz, MPFR_RNDN); in check3()
44 mpfr_clears (xx, zz, (mpfr_ptr) 0); in check3()
H A Dtsub_ui.c31 mpfr_t xx,zz; in check3() local
33 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0); in check3()
35 mpfr_sub_ui (zz, xx, y, rnd_mode); in check3()
36 if (mpfr_cmp_str1(zz, zs)) in check3()
39 mpfr_dump (zz); in check3()
44 mpfr_clears (xx, zz, (mpfr_ptr) 0); in check3()
H A Dtui_div.c29 mpfr_t xx, zz; in check() local
31 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0); in check()
33 mpfr_ui_div (zz, y, xx, rnd_mode); in check()
34 if (mpfr_cmp_str1(zz, zs)) in check()
37 mpfr_out_str (stdout, 10, 0, zz, MPFR_RNDN); in check()
42 mpfr_clears (xx, zz, (mpfr_ptr) 0); in check()
H A Dtui_sub.c145 mpfr_t xx, zz; in check() local
147 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0); in check()
149 mpfr_ui_sub (zz, y, xx, rnd_mode); in check()
150 if (mpfr_cmp_str1 (zz, zs) ) in check()
153 mpfr_out_str(stdout, 10, 0, zz, MPFR_RNDN); in check()
158 mpfr_clears (xx, zz, (mpfr_ptr) 0); in check()
H A Dtadd.c74 mpfr_t xx,yy,zz; in check() local
78 mpfr_init2 (zz, pz); in check()
82 test_add (zz, xx, yy, rnd_mode); in check()
83 if (mpfr_cmp_str1 (zz, zs) ) in check()
86 mpfr_out_str (stdout, 10, 0, zz, MPFR_RNDN); in check()
91 mpfr_clears (xx, yy, zz, (mpfr_ptr) 0); in check()
100 mpfr_t xx, yy, zz; in check2b() local
104 mpfr_init2 (zz,pz); in check2b()
107 test_add (zz, xx, yy, rnd_mode); in check2b()
108 if (mpfr_cmp_str (zz, rs, 2, MPFR_RNDN)) in check2b()
[all …]
/netbsd-src/external/mpl/bind/dist/bin/tests/system/rpz/
H A Dtest623 update add 128.1111.2222.3333.4444.5555.6666.zz.rpz-ip.bl. 300 CNAME .
24 update add 128.1111.2222.3333.4444.5555.zz.8888.rpz-ip.bl. 300 CNAME .
25 update add 128.1111.2222.3333.4444.zz.8888.rpz-ip.bl. 300 CNAME .
26 update add 128.zz.3333.4444.0.0.8888.rpz-ip.bl. 300 CNAME .
27 update add 128.zz.3333.4444.0.7777.8888.rpz-ip.bl. 300 CNAME .
28 update add 128.zz.3333.4444.0.8777.8888.rpz-ip.bl. 300 CNAME .
29 update add 127.zz.3333.4444.0.8777.8888.rpz-ip.bl. 300 CNAME .
/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dpow_z.c118 mpfr_t y2, zz; in mpfr_pow_pos_z() local
131 mpfr_init2 (zz, ABSIZ (z) * GMP_NUMB_BITS); in mpfr_pow_pos_z()
132 inexact = mpfr_set_z (zz, z, MPFR_RNDN); in mpfr_pow_pos_z()
134 inexact = mpfr_pow_general (y2, x, zz, rnd, 1, in mpfr_pow_pos_z()
136 mpfr_clear (zz); in mpfr_pow_pos_z()
330 mpfr_t y2, zz; in mpfr_pow_z() local
339 mpfr_init2 (zz, ABSIZ (z) * GMP_NUMB_BITS); in mpfr_pow_z()
340 inexact = mpfr_set_z (zz, z, MPFR_RNDN); in mpfr_pow_z()
342 inexact = mpfr_pow_general (y2, x, zz, rnd, 1, in mpfr_pow_z()
344 mpfr_clear (zz); in mpfr_pow_z()
H A Dfmma.c31 mpfr_t zz; in mpfr_fmma_aux() local
60 MPFR_TMP_INIT (zp, zz, 2 * prec_z, un); in mpfr_fmma_aux()
62 inex = (neg == 0) ? mpfr_add (zz, (mpfr_srcptr) u, (mpfr_srcptr) v, rnd) in mpfr_fmma_aux()
63 : mpfr_sub (zz, (mpfr_srcptr) u, (mpfr_srcptr) v, rnd); in mpfr_fmma_aux()
64 inex = mpfr_set_1_2 (z, zz, rnd, inex); in mpfr_fmma_aux()
H A Dfma.c142 mpfr_t zz; in mpfr_fma() local
146 MPFR_PREC(u) = MPFR_PREC(zz) = 2 * precx; in mpfr_fma()
148 MPFR_MANT(zz) = zmant; in mpfr_fma()
150 MPFR_SIGN(zz) = MPFR_SIGN(z); in mpfr_fma()
151 MPFR_EXP(zz) = MPFR_EXP(z); in mpfr_fma()
152 if (MPFR_PREC(zz) <= GMP_NUMB_BITS) /* zz fits in one limb */ in mpfr_fma()
180 inex = mpfr_add (u, u, zz, rnd_mode); in mpfr_fma()
H A Dsum.c929 mp_size_t zz; /* nb of limbs to zero in the TMD accumulator */ in sum_aux() local
986 zz = zs - wi; in sum_aux()
987 MPFR_ASSERTD (zz >= 0 && zz < zs); in sum_aux()
988 mpn_lshift (zp + zz, wp, wi, td); in sum_aux()
993 zz = zs - wi; in sum_aux()
994 MPFR_ASSERTD (zz >= 0 && zz < zs); in sum_aux()
995 if (zz > 0) in sum_aux()
996 MPN_COPY (zp + zz, wp, wi); in sum_aux()
1001 SAFE_SUB (minexp2, minexp, zz * GMP_NUMB_BITS + td); in sum_aux()
1012 zz = zs; in sum_aux()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/rs6000/
H A Dibm-ldouble.c124 double xh, xl, z, q, zz; in ldouble_qadd_internal() local
136 zz = aa + cc; in ldouble_qadd_internal()
138 xl = a - z + c + zz; in ldouble_qadd_internal()
140 xl = c - z + a + zz; in ldouble_qadd_internal()
145 zz = q + c + (a - (q + z)) + aa + cc; in ldouble_qadd_internal()
148 if (zz == 0.0) in ldouble_qadd_internal()
151 xh = z + zz; in ldouble_qadd_internal()
155 xl = z - xh + zz; in ldouble_qadd_internal()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/rs6000/
H A Dibm-ldouble.c124 double xh, xl, z, q, zz; in __gcc_qadd() local
136 zz = aa + cc; in __gcc_qadd()
138 xl = a - z + c + zz; in __gcc_qadd()
140 xl = c - z + a + zz; in __gcc_qadd()
145 zz = q + c + (a - (q + z)) + aa + cc; in __gcc_qadd()
148 if (zz == 0.0) in __gcc_qadd()
151 xh = z + zz; in __gcc_qadd()
155 xl = z - xh + zz; in __gcc_qadd()
/netbsd-src/common/lib/libc/arch/sparc64/string/
H A Dffs.S62 neg %o0, %o1 ! %o1 = -zz
63 xnor %o0, %o1, %o2 ! %o2 = zz ^ ~ -zz
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
H A DARCInstrFormats.td379 // zz - Memory size (can be 8/16/32 bit load/store).
389 // |B[2-0] |S9[7-0] |S9[8]|B[5-3] |di|aa |zz |x|A |
390 class F32_LD_RS9<bit x, bits<2> aa, bit di, bits<2> zz, dag outs, dag ins,
404 let Inst{8-7} = zz;
411 class F32_LD_ADDR<bit x, bits<2> aa, bit di, bits<2> zz, dag outs, dag ins,
413 F32_LD_RS9<x, aa, di, zz, outs, ins, asmstr, pattern> {
425 // | 1| 1| 0| 0 | 1| 1| 1|di| 0|0|zz |x|A |
426 class F32_LD_LIMM<bit x, bit di, bits<2> zz, dag outs, dag ins,
440 let Inst{8-7} = zz;
450 // |B[2-0] |aa | 1| 1| 0|zz | x|di|B[5-3] | 1| 1|1|1|1|0|A |
[all …]
H A DARCInstrInfo.td794 // Control bits: x, aa, di, zz
798 // zz - data size.
799 multiclass ArcLdInst<DataSizeMode zz, ExtMode x, CacheMode di, string asmop> {
800 let mayLoad = 1, ZZ = zz, X = x, DI = di in {
801 def _rs9: F32_LD_ADDR<x.Value, NoAM.Value, di.Value, zz.Value,
805 def _limm: F32_LD_LIMM<x.Value, di.Value, zz.Value,
809 def _rlimm: F32_LD_RLIMM<x.Value, NoAM.Value, di.Value, zz.Value,
814 def aa.InstSuffix#_rs9: F32_LD_RS9<x.Value, aa.Value, di.Value, zz.Value,
825 foreach zz = [ByteSM, HalfSM] in {
827 …defm LD#zz.InstSuffix#x.InstSuffix#di.InstSuffix : ArcLdInst<zz, x, di, "ld"#zz.AsmSuffix#x.AsmSuf…
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_gf2m.c296 BN_ULONG zz, *z; in BN_GF2m_mod_arr() local
323 zz = z[j]; in BN_GF2m_mod_arr()
336 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr()
338 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr()
345 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr()
347 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr()
354 zz = z[dN] >> d0; in BN_GF2m_mod_arr()
355 if (zz == 0) in BN_GF2m_mod_arr()
364 z[0] ^= zz; /* reduction t^0 component */ in BN_GF2m_mod_arr()
373 z[n] ^= (zz << d0); in BN_GF2m_mod_arr()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_gf2m.c296 BN_ULONG zz, *z; in BN_GF2m_mod_arr() local
323 zz = z[j]; in BN_GF2m_mod_arr()
336 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr()
338 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr()
345 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr()
347 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr()
354 zz = z[dN] >> d0; in BN_GF2m_mod_arr()
355 if (zz == 0) in BN_GF2m_mod_arr()
364 z[0] ^= zz; /* reduction t^0 component */ in BN_GF2m_mod_arr()
373 z[n] ^= (zz << d0); in BN_GF2m_mod_arr()
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/asm/
H A Dbdapqpc.ms13 jump zz
20 zz:

123