Searched refs:temp2 (Results 1 - 25 of 96) sorted by relevance

1234

/netbsd-current/external/gpl3/gdb.old/dist/gold/testsuite/
H A Difunc-sel.h29 void *temp1, *temp2; local
46 : "=&b" (ret), "=&b" (temp1), "=&b" (temp2)
/netbsd-current/external/lgpl3/gmp/dist/tests/mpz/
H A Dt-sqrtrem.c34 mpz_t temp, temp2; local
53 mpz_init (temp2);
83 mpz_add_ui (temp2, x, 1);
84 mpz_mul (temp2, temp2, temp2);
87 if (mpz_cmp (temp2, x2) <= 0)
90 mpz_add (temp2, temp, rem);
93 if (mpz_cmp (x2, temp2) != 0)
102 mpz_clear (temp2);
[all...]
H A Dt-gcd.c34 mpz_t gcd1, gcd2, s, temp1, temp2, temp3; variable
96 mpz_t bs, temp1, temp2; local
99 mpz_inits (bs, temp1, temp2, NULL);
115 mpz_rrandomb (temp2, rs, mpz_get_ui (bs) + 1);
116 mpz_add_ui (temp2, temp2, 1);
117 mpz_mul (temp1, b, temp2);
122 mpz_rrandomb (temp2, rs, mpz_get_ui (bs) + 1);
123 mpz_add_ui (temp2, temp2,
[all...]
H A Dt-root.c32 mpz_t temp, temp2; local
38 mpz_init (temp2);
49 mpz_add (temp2, temp, rem2);
52 if (mpz_cmp (root1, root2) != 0 || mpz_cmp (x2, temp2) != 0 || mpz_cmpabs (temp, x2) > 0 || res == mpz_cmp_ui (rem2, 0))
73 mpz_add_ui (temp2, root1, 1L);
74 mpz_pow_ui (temp2, temp2, nth);
75 MPZ_CHECK_FORMAT (temp2);
78 if (mpz_cmp (temp2, x2) <= 0)
91 mpz_clear (temp2);
[all...]
/netbsd-current/lib/libcurses/
H A Ddelch.c90 __LDATA *end, *temp1, *temp2; local
95 temp2 = temp1 + 1;
97 (void)memcpy(temp1, temp2, sizeof(__LDATA));
98 temp1++, temp2++;
131 temp2 = temp1 + cw;
133 (void)memcpy(temp1, temp2, sizeof(__LDATA));
134 temp1++, temp2++;
H A Dinsch.c94 __LDATA *end, *temp1, *temp2; local
103 temp2 = temp1 - 1;
105 (void)memcpy(temp1, temp2, sizeof(__LDATA));
106 temp1--, temp2--;
H A Dins_wch.c88 __LDATA *start, *temp1, *temp2; local
152 temp2 = temp1 - cw;
153 pcw = (temp2 + 1)->wcols;
156 temp2 += pcw;
157 while (temp1 > temp2 + cw) {
175 while (temp2 >= start) {
176 (void)memcpy(temp1, temp2, sizeof(__LDATA));
177 temp1--, temp2--;
H A Dinsstr.c145 __LDATA *end, *temp1, *temp2; local
165 temp2 = temp1 - len;
166 while (temp2 >= end) {
178 (void)memcpy(temp1, temp2, sizeof(__LDATA));
179 temp1--, temp2--;
H A Dins_wstr.c133 __LDATA *start, *temp1, *temp2; local
315 temp2 = temp1 - width;
316 pcw = (temp2 + 1)->wcols;
321 temp2 += pcw;
322 while (temp1 > temp2 + width) {
337 while (temp2 >= start) {
338 (void)memcpy(temp1, temp2, sizeof(__LDATA));
339 temp1--, temp2--;
/netbsd-current/games/warp/
H A Dutil.c59 double temp, temp2; local
63 temp2 = (double) myrand();
65 temp2 = 0.0;
68 return (int) exp(temp2 * log(temp)/0x7fff);
71 return (int) exp(temp2 * log(temp)/0xffff);
73 return (int) exp(temp2 * log(temp)/0x7fffffff);
/netbsd-current/external/lgpl3/mpfr/dist/tune/
H A Dbidimensional_sample.c344 mpfr_t temp1, temp2; local
360 mpfr_init2 (temp2, MPFR_SMALL_PRECISION);
363 mpfr_set_si (temp2, MPFR_AI_THRESHOLD2, MPFR_RNDN);
364 mpfr_mul_ui (temp2, temp2, (unsigned int)MPFR_PREC (w), MPFR_RNDN);
371 mpfr_add (temp1, temp1, temp2, MPFR_RNDN);
379 mpfr_clear (temp2);
391 mpfr_t temp1, temp2; local
407 mpfr_init2 (temp2, MPFR_SMALL_PRECISION);
410 mpfr_set_si (temp2, MPFR_AI_THRESHOLD
[all...]
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dai.c68 mpfr_t temp1, temp2; local
194 mpfr_init2 (temp2, wprec);
215 mpfr_gamma_one_and_two_third (temp1, temp2, wprec);
218 mpfr_mul (ti, ti, temp2, MPFR_RNDN);
308 mpfr_clear (temp2);
340 mpfr_t temp1, temp2; local
429 mpfr_init2 (temp2, wprec);
463 mpfr_gamma_one_and_two_third (temp1, temp2, wprec);
466 mpfr_mul (u0, u0, temp2, MPFR_RNDN);
620 mpfr_clear (temp2);
646 mpfr_t temp1, temp2; local
[all...]
/netbsd-current/external/lgpl3/gmp/dist/tests/mpn/
H A Dt-hgcd.c60 mpz_t op1, op2, temp1, temp2; local
73 mpz_init (temp2);
135 mpz_rrandomb (temp2, rands, mpz_get_ui (bs) + 1);
136 mpz_add_ui (temp2, temp2, 1);
137 mpz_mul (temp1, op2, temp2);
146 mpz_rrandomb (temp2, rands, mpz_get_ui (bs) + 1);
147 mpz_add_ui (temp2, temp2, 1);
148 mpz_mul (temp1, op1, temp2);
[all...]
H A Dt-hgcd_appr.c50 mpz_t op1, op2, temp1, temp2; local
74 mpz_init (temp2);
116 mpz_rrandomb (temp2, rands, mpz_get_ui (bs) + 1);
117 mpz_add_ui (temp2, temp2, 1);
118 mpz_mul (temp1, op2, temp2);
127 mpz_rrandomb (temp2, rands, mpz_get_ui (bs) + 1);
128 mpz_add_ui (temp2, temp2, 1);
129 mpz_mul (temp1, op1, temp2);
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/cleanup/
H A Dcleanup_masquerade.c102 domain = casefold(state->temp2, domain + 1);
226 state.temp2 = vstring_alloc(100);
234 vstring_free(state.temp2);
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/
H A Dsha256.c153 uint32_t temp1, temp2; local
156 temp2 = temp1 >> 8;
158 temp2 &= 0x00ff00ff;
160 return temp1 | temp2;
H A Dmd4.c161 uint32_t temp1, temp2; local
164 temp2 = temp1 >> 8;
166 temp2 &= 0x00ff00ff;
168 return temp1 | temp2;
H A Dsha.c211 uint32_t temp1, temp2; local
214 temp2 = temp1 >> 8;
216 temp2 &= 0x00ff00ff;
218 return temp1 | temp2;
H A Dmd5.c185 uint32_t temp1, temp2; local
188 temp2 = temp1 >> 8;
190 temp2 &= 0x00ff00ff;
192 return temp1 | temp2;
/netbsd-current/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
H A Ddate_and_time.c268 GFC_REAL_4 temp1, temp2; local
288 temp2 = fmod (*x, 86400.0);
289 temp2 = (temp1 - temp2 >= 0.0) ? temp2 : (temp2 - 86400.0);
290 return temp1 - temp2;
/netbsd-current/external/gpl3/gcc/dist/libgfortran/intrinsics/
H A Ddate_and_time.c278 GFC_REAL_4 temp1, temp2; local
298 temp2 = fmod (*x, 86400.0);
299 temp2 = (temp1 - temp2 >= 0.0) ? temp2 : (temp2 - 86400.0);
300 return temp1 - temp2;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/tilegx/
H A Dtilegx.c990 rtx r0, temp, temp2, temp3, got;
995 temp2 = gen_reg_rtx (Pmode);
1002 emit_insn (gen_mov_tls_gd_step2_32bit (temp2, temp, addr));
1003 emit_insn (gen_tls_add_32bit (temp2, got, temp2, addr));
1008 emit_insn (gen_mov_tls_gd_step2 (temp2, temp, addr));
1009 emit_insn (gen_tls_add (temp2, got, temp2, addr));
1012 emit_move_insn (r0, temp2);
1036 rtx temp, temp2, temp
986 rtx r0, temp, temp2, temp3, got; local
1032 rtx temp, temp2, temp3, got; local
1067 rtx temp, temp2; local
1123 rtx temp, temp2, temp3; local
1168 rtx temp, temp2, temp3; local
1696 rtx temp2 = create_temp_reg_if_possible (DImode, temp); local
1708 rtx temp2 = create_temp_reg_if_possible (DImode, temp); local
1787 rtx temp2 = create_temp_reg_if_possible (Pmode, op0); local
2528 rtx temp2 = gen_reg_rtx (DImode); local
2741 rtx temp2 = gen_reg_rtx (Pmode); local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/tilegx/
H A Dtilegx.cc991 rtx r0, temp, temp2, temp3, got;
996 temp2 = gen_reg_rtx (Pmode);
1003 emit_insn (gen_mov_tls_gd_step2_32bit (temp2, temp, addr));
1004 emit_insn (gen_tls_add_32bit (temp2, got, temp2, addr));
1009 emit_insn (gen_mov_tls_gd_step2 (temp2, temp, addr));
1010 emit_insn (gen_tls_add (temp2, got, temp2, addr));
1013 emit_move_insn (r0, temp2);
1037 rtx temp, temp2, temp
987 rtx r0, temp, temp2, temp3, got; local
1033 rtx temp, temp2, temp3, got; local
1068 rtx temp, temp2; local
1124 rtx temp, temp2, temp3; local
1169 rtx temp, temp2, temp3; local
1697 rtx temp2 = create_temp_reg_if_possible (DImode, temp); local
1709 rtx temp2 = create_temp_reg_if_possible (DImode, temp); local
1788 rtx temp2 = create_temp_reg_if_possible (Pmode, op0); local
2529 rtx temp2 = gen_reg_rtx (DImode); local
2742 rtx temp2 = gen_reg_rtx (Pmode); local
[all...]
/netbsd-current/games/phantasia/
H A Dinterplayer.c673 double temp1 = 0.0, temp2 = 0.0; /* other tampering values */ local
707 sscanf(Databuf, "%lf %lf", &temp1, &temp2);
709 Enrgyvoid.ev_y = floor(temp2);
736 temp2 = 0.0;
737 fwrite((char *) &temp2, sizeof(double), 1, fp);
802 sscanf(Databuf, "%lf %lf", &temp1, &temp2);
850 && CIRCLE(temp1, temp2) < CIRCLE(Other.p_x, Other.p_y)
861 Other.p_2scratch = floor(temp2);
/netbsd-current/sys/dev/i2c/
H A Dnxt2k.c519 uint16_t temp, temp2; local
529 temp2 = 0x7fff - temp;
531 printf("snr temp2: %04hx\n", temp2);
533 if (temp2 > 0x7f00)
534 tsnr = 1000*24+(1000*(30-24)*(temp2-0x7f00)/(0x7fff-0x7f00));
535 else if ( temp2 > 0x7ec0)
536 tsnr = 1000*18+(1000*(24-18)*(temp2-0x7ec0)/(0x7f00-0x7ec0));
537 else if ( temp2 > 0x7c00)
538 tsnr = 1000*12+(1000*(18-12)*(temp2
[all...]

Completed in 262 milliseconds

1234