HomeSort by: relevance | last modified time | path
    Searched defs:z2 (Results 1 - 25 of 67) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/base/two/
thefile.cc 28 int z2 () function
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/base/two/
thefile.cc 28 int z2 () function
  /src/lib/libm/complex/
casin.c 44 double complex ca, ct, zz, z2; local
69 z2.r = (x - y) * (x + y);
70 z2.i = 2.0 * x * y;
80 ct.r = z2.r * ca.r - z2.i * ca.i;
81 ct.i = z2.r * ca.i + z2.i * ca.r;
113 z2 = csqrt(zz);
115 zz = ct + z2;
casinf.c 44 float complex ca, ct, zz, z2; local
69 z2.r = (x - y) * (x + y);
70 z2.i = 2.0 * x * y;
80 ct.r = z2.r * ca.r - z2.i * ca.i;
81 ct.i = z2.r * ca.i + z2.i * ca.r;
113 z2 = csqrtf(zz);
115 zz = ct + z2;
casinl.c 44 long double complex ca, ct, zz, z2; local
69 z2.r = (x - y) * (x + y);
70 z2.i = 2.0L * x * y;
80 ct.r = z2.r * ca.r - z2.i * ca.i;
81 ct.i = z2.r * ca.i + z2.i * ca.r;
113 z2 = csqrtl(zz);
115 zz = ct + z2;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
complex-parts.c 35 float complex z2 = 2.5 - 5.5 * I; local
43 keep_around (&z2);
  /src/external/lgpl3/mpc/dist/src/
cmp_abs.c 27 mpc_t z1, z2; local
56 z2 [0] = b [0];
62 MPFR_CHANGE_SIGN (mpc_realref (z2));
64 MPFR_CHANGE_SIGN (mpc_imagref (z2));
67 if (mpfr_cmp (mpc_realref (z2), mpc_imagref (z2)) > 0)
68 mpfr_swap (mpc_realref (z2), mpc_imagref (z2));
71 if (mpfr_cmp (mpc_realref (z1), mpc_realref (z2)) == 0)
72 return mpfr_cmp (mpc_imagref (z1), mpc_imagref (z2));
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
complex-parts.c 35 float complex z2 = 2.5 - 5.5 * I; local
43 keep_around (&z2);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
curve25519_sandy2x.c 22 #define z2 var[2] macro
45 z_51.v[0] = (z2[1] << 26) + z2[0];
46 z_51.v[1] = (z2[3] << 26) + z2[2];
47 z_51.v[2] = (z2[5] << 26) + z2[4];
48 z_51.v[3] = (z2[7] << 26) + z2[6];
49 z_51.v[4] = (z2[9] << 26) + z2[8]
65 #undef z2 macro
68 #define z2 macro
    [all...]
fe51_invert.c 15 fe51 z2; local
25 /* 2 */ fe51_square(&z2,x);
26 /* 4 */ fe51_square(&t,&z2);
29 /* 11 */ fe51_mul(&z11,&z9,&z2);
  /src/external/lgpl3/mpfr/dist/tests/
ttrunc.c 31 mpfr_t x, y, z, t, y2, z2, t2; local
35 mpfr_inits2 (SIZEX, x, y, z, t, y2, z2, t2, (mpfr_ptr) 0);
74 mpfr_set_prec(z2, k);
82 mpfr_set(z2, x, MPFR_RNDZ);
95 if (!mpfr_eq(z, z2, k))
99 printf ("round(x, RNDZ) = "); mpfr_dump (z2);
114 mpfr_clears (x, y, z, t, y2, z2, t2, (mpfr_ptr) 0);
thypot.c 139 mpfr_t x, y, z1, z2; local
144 mpfr_inits2 (8, x, y, z1, z2, (mpfr_ptr) 0);
152 inex2 = mpfr_hypot (z2, x, y, MPFR_RNDN);
154 if (mpfr_cmp (z1, z2) != 0)
160 mpfr_out_str (stdout, 2, 0, z2, MPFR_RNDN);
177 mpfr_clears (x, y, z1, z2, (mpfr_ptr) 0);
tadd1sp.c 38 mpfr_t x, y, z1, z2; local
47 mpfr_inits (x, y, z1, z2, (mpfr_ptr) 0);
52 mpfr_add1 (z2, x, y, MPFR_RNDN);
53 if (mpfr_cmp (z1, z2))
58 mpfr_clears (x, y, z1, z2, (mpfr_ptr) 0);
tmul_2exp.c 48 mpfr_t x, y, z1, z2; local
71 mpfr_inits2 (prec, z1, z2, (mpfr_ptr) 0);
91 mpfr_mul_2si (z2, x, e - k, (mpfr_rnd_t) rnd) :
93 mpfr_div_2si (z2, x, k - e, (mpfr_rnd_t) rnd) :
94 mpfr_div_2ui (z2, x, k - e, (mpfr_rnd_t) rnd);
97 mpfr_equal_p (z1, z2))
115 mpfr_out_str (stdout, 16, 0, z2, MPFR_RNDN);
121 mpfr_clears (z1, z2, (mpfr_ptr) 0);
tfmma.c 255 mpfr_t a, k, c, d, z1, z2; local
293 mpfr_init2 (z2, prec_z);
296 mpfr_fmma (z2, a, a, c, d, rnd) :
297 mpfr_fmms (z2, a, a, c, d, rnd);
301 mpfr_equal_p (z1, z2)))
310 mpfr_dump (z2);
333 mpfr_fmma (z2, a, a, c, d, rnd) :
334 mpfr_fmms (z2, a, a, c, d, rnd);
338 mpfr_equal_p (z1, z2)))
347 mpfr_dump (z2);
610 mpfr_t a, b, c, d, z1, z2; local
    [all...]
  /src/external/lgpl3/mpc/dist/tests/
teta.c 31 mpc_t z2; local
34 mpc_init2 (z2, p);
41 mpc_div_2ui (z2, z, 1, MPC_RNDNN);
42 mpcb_eta_err (eta2, z2, err_re, err_im);
55 mpc_clear (z2);
tgeneric.c 912 mpc_t z1, z2, z3, z4, z5, zzzz, zzzz2; local
923 mpc_init2 (z2, prec_max);
930 mpc_init2 (z2, prec_max);
941 mpc_init2 (z2, prec_max);
946 mpc_init2 (z2, prec_max);
953 mpc_init2 (z2, prec_max);
959 mpc_init2 (z2, prec_max);
965 mpc_init2 (z2, prec_max);
975 mpc_init2 (z2, prec_max);
1005 mpc_set_prec (z2, prec)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/ref10/
x25519_ref10.c 60 fe25519 z2; local
80 fe25519_0(z2);
90 fe25519_cswap(z2, z3, swap);
93 fe25519_sub(tmp1, x2, z2);
94 fe25519_add(x2, x2, z2);
95 fe25519_add(z2, x3, z3);
97 fe25519_mul(z2, z2, tmp1);
100 fe25519_add(x3, z3, z2);
101 fe25519_sub(z2, z3, z2)
    [all...]
  /src/external/lgpl3/gmp/dist/tests/cxx/
t-cxx11.cc 33 mpz_class z1, z2; local
36 static_assert(noexcept(z1 = std::move(z2)), "sorry");
  /src/lib/libc/citrus/
citrus_csmapper.c 193 struct zone z1, z2; local
203 z2.begin = _bcs_skip_ws_len(z1.end, &len);
206 z2.end = _bcs_skip_nonws_len(z2.begin, &len);
208 /* z1 : dst name, z2 : norm */
212 "%.*s", (int)(z2.end-z2.begin), z2.begin);
  /src/sys/lib/libkern/
softfloat-macros.h 230 bits64 z0, z1, z2; local
234 z2 = a2;
240 z2 = a1<<negCount;
246 z2 = a1;
252 z2 = a0<<negCount;
256 z2 = ( count == 128 ) ? a0 : ( a0 != 0 );
262 z2 |= ( a2 != 0 );
264 *z2Ptr = z2;
307 bits64 z0, z1, z2; local
310 z2 = a2<<count
364 bits64 z0, z1, z2; local
420 bits64 z0, z1, z2; local
483 bits64 z0, z1, z2, more1; local
513 bits64 z0, z1, z2, z3; local
    [all...]
  /src/tests/lib/libm/
t_fenv.c 140 double z1, z2; local
145 z2 = 1 + 2*ulp1;
149 z2 = 1 + ulp1;
153 z2 = 1 + 2*ulp1;
157 z2 = 1 + ulp1;
165 ATF_CHECK_EQ_MSG(y2, z2, "%s[1 + 3*(ulp(1)/2)] expected=%a actual=%a",
166 name, y2, z2);
  /src/usr.sbin/makemandb/
custom_apropos_tokenizer.c 404 char *z, *z2; local
442 z2 = z;
447 && z != z2
  /src/crypto/external/bsd/openssh/dist/
smult_curve25519_ref.c 185 unsigned int z2[32]; local
197 /* 2 */ square(z2,z);
198 /* 4 */ square(t1,z2);
201 /* 11 */ mult(z11,z9,z2);
  /src/external/lgpl3/gmp/dist/tests/rand/
t-rand.c 33 const char *z2[ENTS] = {"0", "3", "1", "3", "3", "0", "3", "3", "3", "1"}; variable
89 {z2, 2},

Completed in 103 milliseconds

1 2 3