Home
last modified time | relevance | path

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

/dragonfly/contrib/openbsd_libm/src/
H A Ds_casinf.c58 static float complex ca, ct, zz, z2; in casinf() local
123 zz = (x - y) * (x + y) + (2.0f * x * y) * I; in casinf()
124 zz = 1.0f - crealf(zz) - cimagf(zz) * I; in casinf()
125 z2 = csqrtf (zz); in casinf()
127 zz = ct + z2; in casinf()
128 zz = clogf (zz); in casinf()
130 w = zz * (-1.0f * I); in casinf()
H A Ds_casin.c60 static double complex ca, ct, zz, z2; in casin() local
120 zz = (x - y) * (x + y) + (2.0 * x * y) * I; in casin()
122 zz = 1.0 - creal(zz) - cimag(zz) * I; in casin()
123 z2 = csqrt (zz); in casin()
125 zz = ct + z2; in casin()
126 zz = clog (zz); in casin()
128 w = zz * (-1.0 * I); in casin()
H A Ds_casinl.c69 static long double complex ca, ct, zz, z2; in casinl() local
121 zz = (x - y) * (x + y) + (2.0L * x * y) * I; in casinl()
122 zz = 1.0L - creall(zz) - cimagl(zz) * I; in casinl()
123 z2 = csqrtl(zz); in casinl()
125 zz = ct + z2; in casinl()
126 zz = clogl(zz); in casinl()
128 w = zz * (-1.0L * I); in casinl()
/dragonfly/contrib/bzip2/
H A Dhuffman.c35 Int32 zz, tmp; \
36 zz = z; tmp = heap[zz]; \
37 while (weight[tmp] < weight[heap[zz >> 1]]) { \
38 heap[zz] = heap[zz >> 1]; \
39 zz >>= 1; \
41 heap[zz] = tmp; \
46 Int32 zz, yy, tmp; \
47 zz = z; tmp = heap[zz]; \
49 yy = zz << 1; \
55 heap[zz] = heap[yy]; \
[all …]
H A Dblocksort.c205 #define SET_BH(zz) bhtab[(zz) >> 5] |= ((UInt32)1 << ((zz) & 31)) argument
206 #define CLEAR_BH(zz) bhtab[(zz) >> 5] &= ~((UInt32)1 << ((zz) & 31)) argument
207 #define ISSET_BH(zz) (bhtab[(zz) >> 5] & ((UInt32)1 << ((zz) & 31))) argument
208 #define WORD_BH(zz) bhtab[(zz) >> 5] argument
209 #define UNALIGNED_BH(zz) ((zz) & 0x01f) argument
/dragonfly/contrib/mpfr/src/
H A Dpow_z.c118 mpfr_t y2, zz; in mpfr_pow_pos_z() local
131 mpfr_init2 (zz, ABS (SIZ (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, ABS (SIZ (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 Dfms.c155 mpfr_srcptr zz; in mpfr_fms() local
162 zz = z; in mpfr_fms()
172 zz = zo4; in mpfr_fms()
177 MPFR_BLOCK (flags, inexact = mpfr_sub (s, u, zz, rnd_mode)); in mpfr_fms()
183 MPFR_ASSERTN (zz != z); in mpfr_fms()
191 if (zz != z) in mpfr_fms()
H A Dfma.c153 mpfr_srcptr zz; in mpfr_fma() local
160 zz = z; in mpfr_fma()
170 zz = zo4; in mpfr_fma()
175 MPFR_BLOCK (flags, inexact = mpfr_add (s, u, zz, rnd_mode)); in mpfr_fma()
181 MPFR_ASSERTN (zz != z); in mpfr_fma()
189 if (zz != z) in mpfr_fma()
H A Dyn.c87 unsigned long k, zz; in mpfr_yn_s3() local
92 zz = mpfr_get_ui (y, MPFR_RNDU); /* y = z^2/4 */ in mpfr_yn_s3()
93 MPFR_ASSERTN (zz < ULONG_MAX - 2); in mpfr_yn_s3()
94 zz += 2; /* z^2 <= 2^zz */ in mpfr_yn_s3()
136 zz / (2 * k) < k + n) in mpfr_yn_s3()
H A Djn.c92 unsigned long k, zz, k0; in mpfr_jn() local
250 zz = mpfr_get_ui (y, MPFR_RNDU); in mpfr_jn()
289 zz / (2 * k) < k + absn) in mpfr_jn()
/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_gf2m.c369 BN_ULONG zz, *z; in BN_GF2m_mod_arr() local
395 zz = z[j]; in BN_GF2m_mod_arr()
408 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr()
410 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr()
417 z[j - n] ^= (zz >> d0); in BN_GF2m_mod_arr()
419 z[j - n - 1] ^= (zz << d1); in BN_GF2m_mod_arr()
426 zz = z[dN] >> d0; in BN_GF2m_mod_arr()
427 if (zz == 0) in BN_GF2m_mod_arr()
445 z[n] ^= (zz << d0); in BN_GF2m_mod_arr()
491 BN_ULONG x1, x0, y1, y0, zz[4]; in BN_GF2m_mod_mul_arr() local
[all …]
/dragonfly/usr.bin/ee/nls/hu_HU.ISO8859-2/
H A Dee.msg12 2 "tabul�torok sz�k�zz� "
92 82 " -e ne konvert�lja a tabokat sz�k�zz�\n"
/dragonfly/games/hack/
H A Dhack.shk.c1051 int zz; in shk_move() local
1063 (appr && (zz = GDIST(nix, niy)) && zz > GDIST(nx, ny)) in shk_move()
/dragonfly/contrib/file/magic/Magdir/
H A Dintel131 # initialization vector with executable code; often near JuMP instruction E9 yy zz
H A Dfilesystems370 # "Missing operating system" zz=0x163 for english version
371 # "Betriebssystem nicht vorhanden" zz=0x16e for german version
391 # "Missing operating system" zz=0x199 for english version
392 # "Betriebssystem nicht vorhanden" zz=0x1?? for german version
409 # "Missing operating system" zz=0x19a for english version
410 # "Betriebssystem nicht vorhanden" zz=0x1?? for german version
H A Dimages659 0 string zz MGR bitmap, old format, 1-bit deep, 16-bit aligned
1429 # p M 8 5/6 xx yy zz data...
1432 # most frequent byte, xx and zz are runlength escape codes, where xx is
H A Darchive1027 # ZZip archiver (.zz)
/dragonfly/nrelease/gui/root/.vim/plugin/
H A Dminibufexpl.vim913 normal! zz
/dragonfly/contrib/ncurses/misc/
H A Dterminfo.src6591 zz{{||}}~~,