| /src/lib/libcurses/ |
| delch.c | 90 __LDATA *end, *temp1, *temp2; local 98 temp2 = temp1 + 1; 100 (void)memcpy(temp1, temp2, sizeof(__LDATA)); 101 temp1++, temp2++; 134 temp2 = temp1 + cw; 136 (void)memcpy(temp1, temp2, sizeof(__LDATA)); 137 temp1++, temp2++;
|
| insch.c | 94 __LDATA *end, *temp1, *temp2; local 106 temp2 = temp1 - 1; 108 (void)memcpy(temp1, temp2, sizeof(__LDATA)); 109 temp1--, temp2--;
|
| ins_wch.c | 88 __LDATA *start, *temp1, *temp2; local 155 temp2 = temp1 - cw; 156 pcw = (temp2 + 1)->wcols; 159 temp2 += pcw; 160 while (temp1 > temp2 + cw) { 178 while (temp2 >= start) { 179 (void)memcpy(temp1, temp2, sizeof(__LDATA)); 180 temp1--, temp2--;
|
| insstr.c | 145 __LDATA *end, *temp1, *temp2; local 168 temp2 = temp1 - len; 169 while (temp2 >= end) { 181 (void)memcpy(temp1, temp2, sizeof(__LDATA)); 182 temp1--, temp2--;
|
| ins_wstr.c | 133 __LDATA *start, *temp1, *temp2; local 318 temp2 = temp1 - width; 319 pcw = (temp2 + 1)->wcols; 324 temp2 += pcw; 325 while (temp1 > temp2 + width) { 340 while (temp2 >= start) { 341 (void)memcpy(temp1, temp2, sizeof(__LDATA)); 342 temp1--, temp2--;
|
| /src/external/lgpl3/gmp/dist/tests/mpz/ |
| t-sqrtrem.c | 34 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...] |
| t-root.c | 32 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...] |
| t-gcd.c | 34 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, 1) [all...] |
| /src/games/phantasia/ |
| interplayer.c | 673 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);
|
| /src/games/warp/ |
| util.c | 59 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);
|
| /src/external/gpl3/gcc/dist/libgcc/config/nds32/ |
| linux-atomic.c | 31 int temp1, temp2, temp3, offset; local 42 : "=&r" (offset), "=&r" (temp3), "=&r" (temp2), "=&r" (temp1)
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/nds32/ |
| linux-atomic.c | 31 int temp1, temp2, temp3, offset; local 42 : "=&r" (offset), "=&r" (temp3), "=&r" (temp2), "=&r" (temp1)
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| md4.c | 161 uint32_t temp1, temp2; local 164 temp2 = temp1 >> 8; 166 temp2 &= 0x00ff00ff; 168 return temp1 | temp2;
|
| md5.c | 185 uint32_t temp1, temp2; local 188 temp2 = temp1 >> 8; 190 temp2 &= 0x00ff00ff; 192 return temp1 | temp2;
|
| sha.c | 211 uint32_t temp1, temp2; local 214 temp2 = temp1 >> 8; 216 temp2 &= 0x00ff00ff; 218 return temp1 | temp2;
|
| sha256.c | 153 uint32_t temp1, temp2; local 156 temp2 = temp1 >> 8; 158 temp2 &= 0x00ff00ff; 160 return temp1 | temp2;
|
| /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/ |
| date_and_time.c | 278 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;
|
| /src/external/lgpl3/mpfr/dist/src/ |
| ai.c | 68 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...] |
| /src/sys/dev/i2c/ |
| nxt2k.c | 519 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-0x7c00)/(0x7ec0-0x7c00)) [all...] |
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| StringBuilder.cc | 418 char temp2 = value[n - j]; local 419 value[j] = temp2;
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| StringBuilder.cc | 418 char temp2 = value[n - j]; local 419 value[j] = temp2;
|
| /src/external/gpl3/gcc/dist/libgfortran/intrinsics/ |
| date_and_time.c | 304 GFC_REAL_4 temp1, temp2; local 324 temp2 = fmod (*x, 86400.0); 325 temp2 = (temp1 - temp2 >= 0.0) ? temp2 : (temp2 - 86400.0); 326 return temp1 - temp2;
|
| /src/external/lgpl3/gmp/dist/tests/mpn/ |
| t-hgcd.c | 60 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...] |
| t-hgcd_appr.c | 50 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...] |
| /src/external/lgpl3/mpfr/dist/tune/ |
| bidimensional_sample.c | 344 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_THRESHOLD2, MPFR_RNDN) [all...] |