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

1 2 3 4

  /src/lib/libcurses/
delch.c 90 __LDATA *end, *temp1, *temp2; local
97 temp1 = &win->alines[win->cury]->line[win->curx];
98 temp2 = temp1 + 1;
99 while (temp1 < end) {
100 (void)memcpy(temp1, temp2, sizeof(__LDATA));
101 temp1++, temp2++;
103 temp1->ch = win->bch;
104 temp1->cflags = CA_BACKGROUND;
106 temp1->attr = win->battr & __COLOR;
108 temp1->attr = 0
    [all...]
insch.c 94 __LDATA *end, *temp1, *temp2; local
105 temp1 = &win->alines[win->cury]->line[win->maxx - 1];
106 temp2 = temp1 - 1;
107 while (temp1 > end) {
108 (void)memcpy(temp1, temp2, sizeof(__LDATA));
109 temp1--, temp2--;
111 temp1->ch = (wchar_t)ch & __CHARTEXT;
112 if (temp1->ch == win->bch) {
113 temp1->ch = win->bch;
114 temp1->cflags &= ~CA_CONTINUATION
    [all...]
insstr.c 145 __LDATA *end, *temp1, *temp2; local
167 temp1 = &win->alines[win->cury]->line[win->maxx - 1];
168 temp2 = temp1 - len;
171 np = temp1->nsp;
178 temp1->nsp = NULL;
181 (void)memcpy(temp1, temp2, sizeof(__LDATA));
182 temp1--, temp2--;
186 for (scp = str, temp1 = end, x = win->curx;
188 scp++, temp1++, x++)
190 temp1->ch = (wchar_t)*scp & __CHARTEXT
    [all...]
ins_wch.c 88 __LDATA *start, *temp1, *temp2; local
154 temp1 = &win->alines[y]->line[win->maxx - 1];
155 temp2 = temp1 - cw;
160 while (temp1 > temp2 + cw) {
161 np = temp1->nsp;
168 temp1->nsp = NULL;
170 temp1->ch = win->bch;
171 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR)
173 temp1->attr = win->battr;
174 temp1->wcols = 1
    [all...]
ins_wstr.c 133 __LDATA *start, *temp1, *temp2; local
317 temp1 = &win->alines[y]->line[win->maxx - 1];
318 temp2 = temp1 - width;
325 while (temp1 > temp2 + width) {
326 temp1->ch = win->bch;
327 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR) {
331 temp1->attr = win->battr;
332 temp1->cflags |= CA_BACKGROUND;
333 temp1->cflags &= ~CA_CONTINUATION;
334 temp1->wcols = 1
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/
riscv32cpuid.pl 18 my ($in_a,$in_b,$len,$x,$temp1,$temp2) = ('a0','a1','a2','t0','t1','t2');
31 lbu $temp1,0($in_a)
36 xor $temp1,$temp1,$temp2
37 or $x,$x,$temp1
45 my ($ptr,$len,$temp1,$temp2) = ('a0','a1','t0','t1');
56 srli $temp1,$len,4
57 bnez $temp1,3f # len > 15
68 andi $temp1,$ptr,0x3
69 beqz $temp1,4
    [all...]
riscv64cpuid.pl 18 my ($in_a,$in_b,$len,$x,$temp1,$temp2) = ('a0','a1','a2','t0','t1','t2');
31 lbu $temp1,0($in_a)
36 xor $temp1,$temp1,$temp2
37 or $x,$x,$temp1
45 my ($ptr,$len,$temp1,$temp2) = ('a0','a1','t0','t1');
56 srli $temp1,$len,4
57 bnez $temp1,3f # len > 15
68 andi $temp1,$ptr,0x7
69 beqz $temp1,4
    [all...]
loongarch64cpuid.pl 25 my ($in_a,$in_b,$len,$m,$temp1,$temp2) = ($a0,$a1,$a2,$t0,$t1,$t2);
38 ld.bu $temp1,$in_a,0
43 xor $temp1,$temp1,$temp2
44 or $m,$m,$temp1
52 my ($ptr,$len,$temp1,$temp2) = ($a0,$a1,$t0,$t1);
63 srli.d $temp1,$len,4
64 bnez $temp1,3f # len > 15
75 andi $temp1,$ptr,0x7
76 beqz $temp1,4
    [all...]
  /src/external/lgpl3/gmp/dist/tests/mpz/
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);
117 mpz_mul (temp1, b, temp2);
118 mpz_add (a, a, temp1);
124 mpz_mul (temp1, a, temp2);
125 mpz_add (b, b, temp1);
128 mpz_clears (bs, temp1, temp2, NULL);
233 mpz_inits (bs, op1, op2, ref, gcd1, gcd2, temp1, temp2, temp3, s, NULL);
293 mpz_gcdext (NULL, temp1, temp2, op1, op2)
    [all...]
  /src/external/lgpl3/mpfr/dist/tune/
bidimensional_sample.c 344 mpfr_t temp1, temp2; local
359 mpfr_init2 (temp1, MPFR_SMALL_PRECISION);
362 mpfr_set (temp1, x, MPFR_SMALL_PRECISION);
367 mpfr_mul_si (temp1, temp1, MPFR_AI_THRESHOLD1, MPFR_RNDN);
369 mpfr_mul_si (temp1, temp1, MPFR_AI_THRESHOLD3, MPFR_RNDN);
371 mpfr_add (temp1, temp1, temp2, MPFR_RNDN);
373 if (mpfr_cmp_si (temp1, MPFR_AI_SCALE) > 0
391 mpfr_t temp1, temp2; local
    [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);
708 Enrgyvoid.ev_x = floor(temp1);
719 temp1 = infloat();
720 if (temp1 > Player.p_gold || temp1 < 0) {
733 fread((char *) &temp1, sizeof(double), 1, fp);
740 mvprintw(4, 0, "You have collected %.0f in gold.\n", temp1);
741 Player.p_gold += floor(temp1);
783 temp1 = distance(Player.p_x, Enrgyvoid.ev_x, Player.p_y, Enrgyvoid.ev_y)
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
ai.c 68 mpfr_t temp1, temp2; local
193 mpfr_init2 (temp1, wprec);
215 mpfr_gamma_one_and_two_third (temp1, temp2, wprec);
223 mpfr_mul (tip1, tip1, temp1, MPFR_RNDN);
307 mpfr_clear (temp1);
340 mpfr_t temp1, temp2; local
428 mpfr_init2 (temp1, wprec);
463 mpfr_gamma_one_and_two_third (temp1, temp2, wprec);
471 mpfr_mul (u1, u1, temp1, MPFR_RNDN);
619 mpfr_clear (temp1);
646 mpfr_t temp1, temp2; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
sha256.c 153 uint32_t temp1, temp2; local
155 temp1 = cshift(t, 16);
156 temp2 = temp1 >> 8;
157 temp1 &= 0x00ff00ff;
159 temp1 <<= 8;
160 return temp1 | temp2;
md4.c 161 uint32_t temp1, temp2; local
163 temp1 = cshift(t, 16);
164 temp2 = temp1 >> 8;
165 temp1 &= 0x00ff00ff;
167 temp1 <<= 8;
168 return temp1 | temp2;
sha.c 211 uint32_t temp1, temp2; local
213 temp1 = cshift(t, 16);
214 temp2 = temp1 >> 8;
215 temp1 &= 0x00ff00ff;
217 temp1 <<= 8;
218 return temp1 | temp2;
md5.c 185 uint32_t temp1, temp2; local
187 temp1 = cshift(t, 16);
188 temp2 = temp1 >> 8;
189 temp1 &= 0x00ff00ff;
191 temp1 <<= 8;
192 return temp1 | temp2;
  /src/external/ibm-public/postfix/dist/src/cleanup/
cleanup_masquerade.c 130 masq = casefold(state->temp1, masq);
225 state.temp1 = vstring_alloc(100);
233 vstring_free(state.temp1);
cleanup_message.c 274 vstring_sprintf(state->temp1, "%s: %s: %s %.200s from %s;",
277 vstring_sprintf_append(state->temp1, " from=<%s>",
280 vstring_sprintf_append(state->temp1, " to=<%s>",
283 vstring_sprintf_append(state->temp1, " proto=%s", attr);
285 vstring_sprintf_append(state->temp1, " helo=<%s>", attr);
287 vstring_sprintf_append(state->temp1, ": %s", text);
288 msg_info("%s", vstring_str(state->temp1));
782 vstring_sprintf(state->temp1, "%s@%s",
788 vstring_sprintf(state->temp1, "%s.%s@%s",
792 state->resent, vstring_str(state->temp1));
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
fixed-value.cc 418 double_int r, s, temp1, temp2; local
438 temp1.high = high_low.low;
439 temp1.low = 0;
440 s = low_low + temp1;
442 || s.ult (temp1))
444 temp1.high = s.high;
445 temp1.low = s.low;
448 s = temp1 + temp2;
449 if (s.ult (temp1)
453 temp1.low = high_low.high
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/
fixed-bit.c 283 INTunion r, s, temp1, temp2;
310 temp1.s.high = high_low.s.low;
311 temp1.s.low = 0;
312 s.ll = low_low.ll + temp1.ll;
314 || (UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll)
316 temp1.ll = s.ll;
319 s.ll = temp1.ll + temp2.ll;
320 if ((UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll
324 temp1.s.low = high_low.s.high;
325 temp1.s.high = 0
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
fixed-value.cc 418 double_int r, s, temp1, temp2; local
438 temp1.high = high_low.low;
439 temp1.low = 0;
440 s = low_low + temp1;
442 || s.ult (temp1))
444 temp1.high = s.high;
445 temp1.low = s.low;
448 s = temp1 + temp2;
449 if (s.ult (temp1)
453 temp1.low = high_low.high
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/
fixed-bit.c 283 INTunion r, s, temp1, temp2;
310 temp1.s.high = high_low.s.low;
311 temp1.s.low = 0;
312 s.ll = low_low.ll + temp1.ll;
314 || (UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll)
316 temp1.ll = s.ll;
319 s.ll = temp1.ll + temp2.ll;
320 if ((UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll
324 temp1.s.low = high_low.s.high;
325 temp1.s.high = 0
    [all...]
  /src/external/lgpl3/gmp/dist/tests/mpn/
t-hgcd.c 60 mpz_t op1, op2, temp1, temp2; local
72 mpz_init (temp1);
137 mpz_mul (temp1, op2, temp2);
138 mpz_add (op1, op1, temp1);
148 mpz_mul (temp1, op1, temp2);
149 mpz_add (op2, op2, temp1);
165 mpz_clear (temp1);
  /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)
45 return 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)
45 return temp1;

Completed in 32 milliseconds

1 2 3 4