Home
last modified time | relevance | path

Searched refs:x2 (Results 1 – 25 of 399) sorted by relevance

12345678910>>...16

/netbsd/src/external/bsd/pcc/dist/pcc/mip/
Dsoftfloat.h61 #define FLOAT_PLUS(x1,x2) soft_plus(x1, x2) argument
62 #define FLOAT_MINUS(x1,x2) soft_minus(x1, x2) argument
63 #define FLOAT_MUL(x1,x2) soft_mul(x1, x2) argument
64 #define FLOAT_DIV(x1,x2) soft_div(x1, x2) argument
67 #define FLOAT_EQ(x1,x2) soft_cmp_eq(x1, x2) argument
68 #define FLOAT_NE(x1,x2) soft_cmp_ne(x1, x2) argument
69 #define FLOAT_GE(x1,x2) soft_cmp_ge(x1, x2) argument
70 #define FLOAT_GT(x1,x2) soft_cmp_gt(x1, x2) argument
71 #define FLOAT_LE(x1,x2) soft_cmp_le(x1, x2) argument
72 #define FLOAT_LT(x1,x2) soft_cmp_lt(x1, x2) argument
[all …]
/netbsd/src/lib/libm/src/
Ds_tanhl.c121 long double hi,lo,s,x2,z; in tanhl() local
145 x2 = x*x; in tanhl()
147 long double x4 = x2*x2; in tanhl()
148 RETURNI(((T19*x2 + T17)*x4 + (T15*x2 + T13))*(x2*x*x2*x4*x4) + in tanhl()
149 ((T11*x2 + T9)*x4 + (T7*x2 + T5))*(x2*x*x2) + in tanhl()
150 T3*(x2*x) + x); in tanhl()
152 dx2 = x2; in tanhl()
155 T25)*x2 + T23)*x2 + T21)*x2 + T19)*x2 + T17)*x2 + in tanhl()
156 T15)*x2 + T13)*x2 + T11)*x2 + T9)*x2 + T7)*x2 + T5)* in tanhl()
157 (x2*x*x2) + in tanhl()
[all …]
De_sinhl.c93 long double hi,lo,x2; in sinhl() local
116 x2 = x*x; in sinhl()
118 long double x4 = x2*x2; in sinhl()
119 RETURNI(((S17*x2 + S15)*x4 + (S13*x2 + S11))*(x2*x*x4*x4) + in sinhl()
120 ((S9*x2 + S7)*x2 + S5)*(x2*x*x2) + S3*(x2*x) + x); in sinhl()
122 dx2 = x2; in sinhl()
124 S21)*x2 + S19)*x2 + in sinhl()
125 S17)*x2 + S15)*x2 + S13)*x2 + S11)*x2 + S9)*x2 + S7)*x2 + in sinhl()
126 S5)* (x2*x*x2) + in sinhl()
127 S3*(x2*x) + x); in sinhl()
De_coshl.c94 long double hi,lo,x2; in coshl() local
112 x2 = x*x; in coshl()
114 long double x4 = x2*x2; in coshl()
115 RETURNI(((C16*x2 + C14)*x4 + (C12*x2 + C10))*(x4*x4*x2) + in coshl()
116 ((C8*x2 + C6)*x2 + C4)*x4 + C2*x2 + 1); in coshl()
118 dx2 = x2; in coshl()
120 C20)*x2 + C18)*x2 + in coshl()
121 C16)*x2 + C14)*x2 + C12)*x2 + C10)*x2 + C8)*x2 + C6)*x2 + in coshl()
122 C4)*(x2*x2) + C2*x2 + 1); in coshl()
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/seed/
Dseed.c449 seed_word x1, x2, x3, x4; in SEED_set_key() local
453 char2word(rawkey + 4, x2); in SEED_set_key()
458 t1 = (x2 - x4 + KC0) & 0xffffffff; in SEED_set_key()
460 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC1); in SEED_set_key()
464 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC2); in SEED_set_key()
466 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC3); in SEED_set_key()
468 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC4); in SEED_set_key()
470 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC5); in SEED_set_key()
472 KEYSCHEDULE_UPDATE0(t0, t1, x1, x2, x3, x4, KC6); in SEED_set_key()
474 KEYSCHEDULE_UPDATE1(t0, t1, x1, x2, x3, x4, KC7); in SEED_set_key()
[all …]
/netbsd/src/external/lgpl3/gmp/dist/tests/mpz/
Dt-root.c30 check_one (mpz_t root1, mpz_t x2, unsigned long nth, int res, int i) in check_one() argument
42 mpz_rootrem (root2, rem2, x2, nth); in check_one()
52 …if (mpz_cmp (root1, root2) != 0 || mpz_cmp (x2, temp2) != 0 || mpz_cmpabs (temp, x2) > 0 || res ==… in check_one()
55 debug_mp (x2, 10); in check_one()
71 if (nth <= 10000 && mpz_sgn(x2) > 0) /* skip too expensive test */ in check_one()
78 if (mpz_cmp (temp2, x2) <= 0) in check_one()
81 debug_mp (x2, 10); in check_one()
97 mpz_t x2; in main() local
114 mpz_init (x2); in main()
118 …mpz_set_str (x2, "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000… in main()
[all …]
Dt-sqrtrem.c32 mpz_t x2; in main() local
49 mpz_init (x2); in main()
62 mpz_rrandomb (x2, rands, x2_size); in main()
66 mpz_sqrt (temp, x2); in main()
69 mpz_sqrtrem (x, rem, x2); in main()
75 dump_abort (x2, x, rem); in main()
80 if (mpz_cmp (temp, x2) > 0) in main()
81 dump_abort (x2, x, rem); in main()
87 if (mpz_cmp (temp2, x2) <= 0) in main()
88 dump_abort (x2, x, rem); in main()
[all …]
Dt-perfsqr.c91 mpz_t x2, x2t, x; in check_sqrt() local
101 mpz_init (x2); in check_sqrt()
109 mpz_rrandomb (x2, rands, x2n); in check_sqrt()
112 res = mpz_perfect_square_p (x2); in check_sqrt()
113 mpz_sqrt (x, x2); in check_sqrt()
116 if (res != (mpz_cmp (x2, x2t) == 0)) in check_sqrt()
120 mpz_trace (" x2 ", x2); in check_sqrt()
123 printf (" mpz_sqrt %d\n", mpz_cmp (x2, x2t) == 0); in check_sqrt()
132 mpz_clear (x2); in check_sqrt()
/netbsd/src/external/bsd/tcpdump/dist/tests/
Dforces2vvv.out1 05:12:46.942414 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68)
4 05:12:46.943161 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 29…
7 05:12:46.943242 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 26…
10 05:12:46.943643 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36)
13 05:12:47.944776 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68)
16 05:12:47.946163 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 29…
19 05:12:47.946319 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 26…
22 05:12:47.947214 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36)
25 05:12:48.948471 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68)
28 05:12:48.949179 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 29…
[all …]
Dforces2vv.out1 05:05:09.298782 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68)
4 05:05:09.303686 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 29…
7 05:05:09.304939 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 26…
10 05:05:09.306408 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36)
13 05:05:10.309380 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68)
16 05:05:10.309715 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 29…
19 05:05:10.309749 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 26…
22 05:05:10.309952 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 36)
25 05:05:11.310417 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 68)
28 05:05:11.310768 IP (tos 0x2,ECT(0), ttl 64, id 0, offset 0, flags [DF], proto SCTP (132), length 29…
[all …]
Dbcm-li-v.out1 …1 2020-04-01 07:58:19.865946 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
5 …2 2020-04-01 07:58:21.884122 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
10 …3 2020-04-01 07:58:21.884291 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
15 …4 2020-04-01 07:58:21.886344 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
20 …5 2020-04-01 07:58:21.886389 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
25 …6 2020-04-01 07:58:21.886872 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
30 …7 2020-04-01 07:58:21.889698 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
35 …8 2020-04-01 07:58:21.889745 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
40 …9 2020-04-01 07:58:21.889750 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP …
45 …10 2020-04-01 07:58:21.891444 IP (tos 0x2,ECT(0), ttl 59, id 0, offset 0, flags [none], proto UDP…
[all …]
/netbsd/src/crypto/external/bsd/openssl/dist/crypto/rc2/
Drc2_cbc.c98 register RC2_INT x0, x1, x2, x3, t; in RC2_encrypt() local
105 x2 = (RC2_INT) l & 0xffff; in RC2_encrypt()
113 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff; in RC2_encrypt()
115 t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff; in RC2_encrypt()
117 t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff; in RC2_encrypt()
118 x2 = (t << 3) | (t >> 13); in RC2_encrypt()
119 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff; in RC2_encrypt()
129 x2 += p1[x1 & 0x3f]; in RC2_encrypt()
130 x3 += p1[x2 & 0x3f]; in RC2_encrypt()
137 (uint32_t)(x2 & 0xffff) | ((uint32_t)(x3 & 0xffff) << 16L); in RC2_encrypt()
[all …]
/netbsd/src/external/lgpl3/mpfr/dist/tests/
Dtsub1sp.c451 printf ("Expected: "); mpfr_dump (x2); \
464 printf ("Expected: "); mpfr_dump (x2); \
475 mpfr_t x,y,z,x2; in check_random() local
479 mpfr_inits2 (p, x, y, z, x2, (mpfr_ptr) 0); in check_random()
491 inexact1 = mpfr_sub1(x2, y, z, (mpfr_rnd_t) r); in check_random()
493 if (mpfr_cmp(x, x2)) in check_random()
500 mpfr_clears (x, y, z, x2, (mpfr_ptr) 0); in check_random()
506 mpfr_t x,y,z,x2; in check_special() local
512 mpfr_inits (x, y, z, x2, (mpfr_ptr) 0); in check_special()
521 mpfr_set_prec(x2, 53); in check_special()
[all …]
Dtgeneric.c124 #define TGENERIC_CHECK(S,EXPR) TGENERIC_CHECK_AUX (S, EXPR, x2, u)
126 #define TGENERIC_CHECK(S,EXPR) TGENERIC_CHECK_AUX (S, EXPR, x2, -1)
145 #define TGENERIC_INFO(P) TGENERIC_IAUX (P, x, x2, u)
147 #define TGENERIC_INFO(P) TGENERIC_IAUX (P, x, x2, -1)
173 mpfr_t x2; in test_generic() local
192 mpfr_init2 (x2, MPFR_PREC_MIN); in test_generic()
233 mpfr_set_prec (x2, xprec); in test_generic()
235 mpfr_set_prec (x2, IEEE_DBL_MANT_DIG); in test_generic()
254 RAND_FUNCTION (x2); in test_generic()
261 tests_default_random (x2, TEST_RANDOM_POS2, in test_generic()
[all …]
/netbsd/src/sys/external/bsd/drm2/dist/drm/
Ddrm_rect.c54 r1->x2 = min(r1->x2, r2->x2); in drm_rect_intersect()
108 src->x1 = src->x2 - new_src_w; in drm_rect_clip_scaled()
119 diff = dst->x2 - clip->x2; in drm_rect_clip_scaled()
124 src->x2 = src->x1 + new_src_w; in drm_rect_clip_scaled()
125 dst->x2 -= diff; in drm_rect_clip_scaled()
269 r->x1 = width - tmp.x2; in drm_rect_rotate()
270 r->x2 = width - tmp.x1; in drm_rect_rotate()
285 r->x2 = tmp.y2; in drm_rect_rotate()
286 r->y1 = width - tmp.x2; in drm_rect_rotate()
291 r->x1 = width - tmp.x2; in drm_rect_rotate()
[all …]
/netbsd/src/common/lib/libc/arch/aarch64/string/
Dmemset.S35 cbz x2, .Lret
47 cmp x2, #15 /* if it's small, ignore alignment */
75 subs x2, x2, x5
83 subs x2, x2, #16
94 tbz x2, #3, .Llast_subdword
97 tbz x2, #2, .Llast_subword
100 tbz x2, #1, .Llast_subhword
103 tbz x2, #0, .Lret
125 cmp x2, x10 /* are we even copying a block? */
133 add x13, x15, x2 /* get ending address */
[all …]
Dmemcmp.S40 cbz x2, .Lmemcmp_ret
42 cmp x2, #6
45 cmp x2, #8
54 add x2, x2, x3 /* add unalignment to length */
55 sub x2, x2, #8 /* now subtract a dword */
76 subs x2, x2, #8
88 tst x2, #7
95 tbz x2, #2, .Lmemcmp_finish_word
104 tbz x2, #1, .Lmemcmp_finish_hword
116 tbz x2, #0, .Lmemcmp_last_compare0
[all …]
/netbsd/src/sys/arch/sparc/fpu/
Dfpu_sqrt.c193 u_int x0, x1, x2, x3; in fpu_sqrt() local
224 FPU_ADDS(x3, x3, x3); FPU_ADDCS(x2, x2, x2); \ in fpu_sqrt()
229 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \ in fpu_sqrt()
230 x2 = (x2 << 1) | (x3 >> 31); x3 <<= 1; \ in fpu_sqrt()
242 x2 = x->fp_mant[2]; in fpu_sqrt()
330 FPU_SUBS(d2, x2, t2); in fpu_sqrt()
334 x0 = d0, x1 = d1, x2 = d2; in fpu_sqrt()
342 FPU_SUBS(d2, x2, t2); in fpu_sqrt()
346 x0 = d0, x1 = d1, x2 = d2; in fpu_sqrt()
364 FPU_SUBCS(d2, x2, t2); in fpu_sqrt()
[all …]
/netbsd/src/sys/arch/powerpc/fpu/
Dfpu_sqrt.c197 u_int x0, x1, x2, x3; in fpu_sqrt() local
244 FPU_ADDS(x3, x3, x3); FPU_ADDCS(x2, x2, x2); \ in fpu_sqrt()
249 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \ in fpu_sqrt()
250 x2 = (x2 << 1) | (x3 >> 31); x3 <<= 1; \ in fpu_sqrt()
262 x2 = x->fp_mant[2]; in fpu_sqrt()
350 FPU_SUBS(d2, x2, t2); in fpu_sqrt()
354 x0 = d0, x1 = d1, x2 = d2; in fpu_sqrt()
362 FPU_SUBS(d2, x2, t2); in fpu_sqrt()
366 x0 = d0, x1 = d1, x2 = d2; in fpu_sqrt()
384 FPU_SUBCS(d2, x2, t2); in fpu_sqrt()
[all …]
/netbsd/src/sys/arch/m68k/fpe/
Dfpu_sqrt.c193 uint32_t x0, x1, x2; in fpu_sqrt() local
225 FPU_ADDS(x2, x2, x2); \ in fpu_sqrt()
230 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \ in fpu_sqrt()
231 x2 <<= 1; \ in fpu_sqrt()
243 x2 = x->fp_mant[2]; in fpu_sqrt()
330 FPU_SUBS(d2, x2, t2); in fpu_sqrt()
334 x0 = d0, x1 = d1, x2 = d2; in fpu_sqrt()
342 FPU_SUBS(d2, x2, t2); in fpu_sqrt()
346 x0 = d0, x1 = d1, x2 = d2; in fpu_sqrt()
359 x->fp_sticky = x0 | x1 | x2; in fpu_sqrt()
/netbsd/src/external/lgpl3/mpc/dist/tests/
Dmul.dat143x2.5763c6519ef1510f8afa101a210b8030b1909cc17004db561a25d9b53e2c08c41c01e8bbac5af6299b9d8786030aa14…
144x2.5109af459d4daf357e09475ec991cdc9b02c8f7dfacdc060d2a24710d09c997f8aea6dbd46f10828c30b583fdcc90d7…
147 - + 100 -inf 100 +inf 100 0x1@125000750 100 0x3@125000750 100 0x1@225000750 100 0x2@225000750 N N
148 - + 100 -inf 100 +inf 100 0x1@225000750 100 0x2@225000750 100 0x1@125000750 100 0x3@125000750 N N
149 - - 100 -inf 100 -inf 100 0x1@225000750 100 -0x2@225000750 100 0x1@125000750 100 -0x3@125000750 N…
150 + - 100 -0 100 +0 100 0x1@-125000750 100 0x3@-125000750 100 0x1@-225000750 100 0x2@-225000750…
151 + - 100 -0 100 +0 100 0x1@-225000750 100 0x2@-225000750 100 0x1@-125000750 100 0x3@-125000750…
152 - - 100 +0 100 +0 100 0x3@-125000750 100 0x1@-125000750 100 0x1@-225000750 100 0x2@-225000750…
153 - - 100 +0 100 +0 100 0x4@-125000750 100 0x1@-125000750 100 0x1@-225000750 100 0x2@-225000750…
154 + - 100 -0 100 +0 100 0x2@-225000750 100 0x1@-225000750 100 0x1@-125000750 100 0x3@-125000750…
[all …]
Dtswap.c26 mpc_t x, y, x2, y2; in main() local
29 mpc_init2 (x2, 50); in main()
34 mpc_set_ui_ui (x2, 1ul, 2ul, MPC_RNDNN); in main()
42 || mpfr_get_prec (mpc_realref (y)) != mpfr_get_prec (mpc_realref (x2)) in main()
43 || mpfr_get_prec (mpc_imagref (y)) != mpfr_get_prec (mpc_imagref (x2)) in main()
45 || mpc_cmp (y, x2) != 0) in main()
49 mpc_clear (x2); in main()
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dtarget-insns.def37 DEF_TARGET_INSN (atomic_test_and_set, (rtx x0, rtx x1, rtx x2))
47 DEF_TARGET_INSN (casesi, (rtx x0, rtx x1, rtx x2, rtx x3, rtx x4))
55 DEF_TARGET_INSN (extv, (rtx x0, rtx x1, rtx x2, rtx x3))
56 DEF_TARGET_INSN (extzv, (rtx x0, rtx x1, rtx x2, rtx x3))
58 DEF_TARGET_INSN (insv, (rtx x0, rtx x1, rtx x2, rtx x3))
60 DEF_TARGET_INSN (load_multiple, (rtx x0, rtx x1, rtx x2))
64 DEF_TARGET_INSN (movstr, (rtx x0, rtx x1, rtx x2))
65 DEF_TARGET_INSN (nonlocal_goto, (rtx x0, rtx x1, rtx x2, rtx x3))
69 DEF_TARGET_INSN (oacc_fork, (rtx x0, rtx x1, rtx x2))
70 DEF_TARGET_INSN (oacc_join, (rtx x0, rtx x1, rtx x2))
[all …]
/netbsd/src/external/gpl3/gcc/dist/libgcc/config/i386/32/
Dsfp-machine.h6 #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ argument
17 "%1" ((USItype) (x2)), \
23 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument
30 : "%0" ((USItype) (x2)), \
36 #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ argument
47 "1" ((USItype) (x2)), \
53 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument
60 : "0" ((USItype) (x2)), \
66 #define __FP_FRAC_ADDI_4(x3,x2,x1,x0,i) \ argument
72 "+&r" ((USItype) (x2)), \
/netbsd/src/common/lib/libc/arch/aarch64/atomic/
Datomic_nand_64.S40 and x2, x0, x1 /* x2 = (*ptr & value) */
41 mvn x2, x2 /* x2 = ~(*ptr & value) */
42 stxr w3, x2, [x4] /* try to store */
56 and x2, x0, x1 /* x2 = (*ptr & value) */
57 mvn x2, x2 /* x2 = ~(*ptr & value) */
58 stxr w3, x2, [x4] /* try to store */

12345678910>>...16