HomeSort by: relevance | last modified time | path
    Searched refs:zz (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/lib/libm/complex/
casin.c 44 double complex ca, ct, zz, z2; local
108 /* cmul( &ca, &ca, &zz ) */
110 zz = (x - y) * (x + y) + (2.0 * x * y) * I;
112 zz = 1.0 - creal(zz) - cimag(zz) * I;
113 z2 = csqrt(zz);
115 zz = ct + z2;
116 zz = clog(zz);
    [all...]
casinf.c 44 float complex ca, ct, zz, z2; local
108 /* cmul( &ca, &ca, &zz ) */
110 zz = (x - y) * (x + y) + (2.0f * x * y) * I;
112 zz = 1.0f - crealf(zz) - cimagf(zz) * I;
113 z2 = csqrtf(zz);
115 zz = ct + z2;
116 zz = clogf(zz);
    [all...]
casinl.c 44 long double complex ca, ct, zz, z2; local
108 /* cmull( &ca, &ca, &zz ) */
110 zz = (x - y) * (x + y) + (2.0L * x * y) * I;
112 zz = 1.0L - creall(zz) - cimagl(zz) * I;
113 z2 = csqrtl(zz);
115 zz = ct + z2;
116 zz = clogl(zz);
    [all...]
  /src/external/lgpl3/mpfr/dist/tests/
tadd_ui.c 31 mpfr_t xx, zz; local
33 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0);
35 mpfr_add_ui (zz, xx, y, rnd_mode);
36 if (mpfr_cmp_str1(zz, zs) )
39 mpfr_out_str(stdout, 10, 0, zz, MPFR_RNDN);
44 mpfr_clears (xx, zz, (mpfr_ptr) 0);
tsub_ui.c 31 mpfr_t xx,zz; local
33 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0);
35 mpfr_sub_ui (zz, xx, y, rnd_mode);
36 if (mpfr_cmp_str1(zz, zs))
39 mpfr_dump (zz);
44 mpfr_clears (xx, zz, (mpfr_ptr) 0);
tset.c 279 mpfr_t u, v, zz, z; local
283 mpfr_inits2 (16, u, v, zz, (mpfr_ptr) 0);
288 inex = mpfr_add (zz, u, v, MPFR_RNDN);
291 MPFR_ASSERTN(mpfr_equal_p (zz, u));
292 inex = mpfr_set_1_2 (z, zz, MPFR_RNDN, inex);
297 mpfr_clears (u, v, zz, z, (mpfr_ptr) 0);
304 mpfr_inits2 (32, u, v, zz, (mpfr_ptr) 0);
309 inex = mpfr_add (zz, u, v, MPFR_RNDN);
312 MPFR_ASSERTN(mpfr_equal_p (zz, u));
313 inex = mpfr_set_1_2 (z, zz, MPFR_RNDN, inex)
    [all...]
tmul.c 55 mpfr_t xx, yy, zz; local
59 mpfr_init2 (zz, pz);
62 test_mul(zz, xx, yy, rnd_mode);
63 if (mpfr_cmp_str1 (zz, res) )
68 mpfr_out_str (stdout, 10, 0, zz, MPFR_RNDN);
74 mpfr_clear (zz);
80 mpfr_t xx, yy, zz; local
82 mpfr_inits2 (53, xx, yy, zz, (mpfr_ptr) 0);
85 test_mul (zz, xx, yy, rnd_mode);
86 if (mpfr_cmp_str1 (zz, zs)
102 mpfr_t xx, yy, zz; local
272 mpfr_t xx, yy, zz; local
359 mpfr_t xx, yy, zz; local
967 mpfr_t x, y, z1, z2, zz; local
    [all...]
tui_div.c 29 mpfr_t xx, zz; local
31 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0);
33 mpfr_ui_div (zz, y, xx, rnd_mode);
34 if (mpfr_cmp_str1(zz, zs))
37 mpfr_out_str (stdout, 10, 0, zz, MPFR_RNDN);
42 mpfr_clears (xx, zz, (mpfr_ptr) 0);
tui_sub.c 145 mpfr_t xx, zz; local
147 mpfr_inits2 (53, xx, zz, (mpfr_ptr) 0);
149 mpfr_ui_sub (zz, y, xx, rnd_mode);
150 if (mpfr_cmp_str1 (zz, zs) )
153 mpfr_out_str(stdout, 10, 0, zz, MPFR_RNDN);
158 mpfr_clears (xx, zz, (mpfr_ptr) 0);
  /src/external/gpl3/gdb/dist/libctf/testsuite/libctf-lookup/
add-to-opened-ctf.c 18 enum an_enum *zz; variable in typeref:enum:an_enum
  /src/external/gpl3/gdb/dist/libctf/testsuite/libctf-regression/
gzrewrite-ctf.c 18 enum an_enum *zz; variable in typeref:enum:an_enum
  /src/external/gpl3/gdb.old/dist/libctf/testsuite/libctf-lookup/
add-to-opened-ctf.c 18 enum an_enum *zz; variable in typeref:enum:an_enum
  /src/external/gpl3/gdb.old/dist/libctf/testsuite/libctf-regression/
gzrewrite-ctf.c 18 enum an_enum *zz; variable in typeref:enum:an_enum
  /src/external/bsd/bzip2/dist/
huffman.c 37 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];
    [all...]
blocksort.c 207 #define SET_BH(zz) bhtab[(zz) >> 5] |= ((UInt32)1 << ((zz) & 31))
208 #define CLEAR_BH(zz) bhtab[(zz) >> 5] &= ~((UInt32)1 << ((zz) & 31))
209 #define ISSET_BH(zz) (bhtab[(zz) >> 5] & ((UInt32)1 << ((zz) & 31)))
210 #define WORD_BH(zz) bhtab[(zz) >> 5
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
fmma.c 31 mpfr_t zz; local
60 MPFR_TMP_INIT (zp, zz, 2 * prec_z, un);
62 inex = (neg == 0) ? mpfr_add (zz, (mpfr_srcptr) u, (mpfr_srcptr) v, rnd)
63 : mpfr_sub (zz, (mpfr_srcptr) u, (mpfr_srcptr) v, rnd);
64 inex = mpfr_set_1_2 (z, zz, rnd, inex);
pow_z.c 118 mpfr_t y2, zz; local
131 mpfr_init2 (zz, ABSIZ (z) * GMP_NUMB_BITS);
132 inexact = mpfr_set_z (zz, z, MPFR_RNDN);
134 inexact = mpfr_pow_general (y2, x, zz, rnd, 1,
136 mpfr_clear (zz);
330 mpfr_t y2, zz; local
339 mpfr_init2 (zz, ABSIZ (z) * GMP_NUMB_BITS);
340 inexact = mpfr_set_z (zz, z, MPFR_RNDN);
342 inexact = mpfr_pow_general (y2, x, zz, rnd, 1,
344 mpfr_clear (zz);
    [all...]
fma.c 142 mpfr_t zz; local
146 MPFR_PREC(u) = MPFR_PREC(zz) = 2 * precx;
148 MPFR_MANT(zz) = zmant;
150 MPFR_SIGN(zz) = MPFR_SIGN(z);
151 MPFR_EXP(zz) = MPFR_EXP(z);
152 if (MPFR_PREC(zz) <= GMP_NUMB_BITS) /* zz fits in one limb */
180 inex = mpfr_add (u, u, zz, rnd_mode);
  /src/common/lib/libc/arch/sparc64/string/
ffs.S 54 * int ffs(unsigned zz) {
55 * return popc( zz ^ ( ~ (-zz)));
62 neg %o0, %o1 ! %o1 = -zz
63 xnor %o0, %o1, %o2 ! %o2 = zz ^ ~ -zz
  /src/external/bsd/ipf/dist/perl/
ipfmeta.pl 154 [NOC] xxx.yy.zz.1/32 xxx.yy.zz.2/32
188 pass in from xxx.yy.zz.1/32 to 192.168.1.1/32 port = 22
190 pass in from xxx.yy.zz.1/32 to 192.168.1.1/32 port = 23
192 pass in from xxx.yy.zz.1/32 to 192.168.1.2/32 port = 22
194 pass in from xxx.yy.zz.1/32 to 192.168.1.2/32 port = 23
196 pass in from xxx.yy.zz.2/32 to 192.168.1.1/32 port = 22
198 pass in from xxx.yy.zz.2/32 to 192.168.1.1/32 port = 23
200 pass in from xxx.yy.zz.2/32 to 192.168.1.2/32 port = 22
202 pass in from xxx.yy.zz.2/32 to 192.168.1.2/32 port = 2
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/rs6000/
ibm-ldouble.c 124 double xh, xl, z, q, zz; local
136 zz = aa + cc;
138 xl = a - z + c + zz;
140 xl = c - z + a + zz;
145 zz = q + c + (a - (q + z)) + aa + cc;
148 if (zz == 0.0)
151 xh = z + zz;
155 xl = z - xh + zz;
  /src/external/gpl3/gcc.old/dist/libgcc/config/rs6000/
ibm-ldouble.c 124 double xh, xl, z, q, zz; local
136 zz = aa + cc;
138 xl = a - z + c + zz;
140 xl = c - z + a + zz;
145 zz = q + c + (a - (q + z)) + aa + cc;
148 if (zz == 0.0)
151 xh = z + zz;
155 xl = z - xh + zz;
  /src/external/gpl3/gcc/dist/fixincludes/tests/base/
testing.h 112 extern struct x zz;
  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/
testing.h 112 extern struct x zz;
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
bn_gf2m.c 296 BN_ULONG zz, *z; local
323 zz = z[j];
336 z[j - n] ^= (zz >> d0);
338 z[j - n - 1] ^= (zz << d1);
345 z[j - n] ^= (zz >> d0);
347 z[j - n - 1] ^= (zz << d1);
354 zz = z[dN] >> d0;
355 if (zz == 0)
364 z[0] ^= zz; /* reduction t^0 component */
373 z[n] ^= (zz << d0)
415 BN_ULONG x1, x0, y1, y0, zz[4]; local
    [all...]

Completed in 35 milliseconds

1 2