Home
last modified time | relevance | path

Searched refs:temp1 (Results 1 – 25 of 107) sorted by relevance

12345

/netbsd-src/lib/libcurses/
H A Ddelch.c90 __LDATA *end, *temp1, *temp2; in wdelch() local
97 temp1 = &win->alines[win->cury]->line[win->curx]; in wdelch()
98 temp2 = temp1 + 1; in wdelch()
99 while (temp1 < end) { in wdelch()
100 (void)memcpy(temp1, temp2, sizeof(__LDATA)); in wdelch()
101 temp1++, temp2++; in wdelch()
103 temp1->ch = win->bch; in wdelch()
104 temp1->cflags = CA_BACKGROUND; in wdelch()
106 temp1->attr = win->battr & __COLOR; in wdelch()
108 temp1 in wdelch()
[all...]
H A Dinsch.c94 __LDATA *end, *temp1, *temp2; in winsch() local
105 temp1 = &win->alines[win->cury]->line[win->maxx - 1]; in winsch()
106 temp2 = temp1 - 1; in winsch()
107 while (temp1 > end) { in winsch()
108 (void)memcpy(temp1, temp2, sizeof(__LDATA)); in winsch()
109 temp1--, temp2--; in winsch()
111 temp1->ch = (wchar_t)ch & __CHARTEXT; in winsch()
112 if (temp1->ch == win->bch) { in winsch()
113 temp1->ch = win->bch; in winsch()
114 temp1 in winsch()
[all...]
H A Dins_wch.c88 __LDATA *start, *temp1, *temp2; in wins_wch() local
154 temp1 = &win->alines[y]->line[win->maxx - 1]; in wins_wch()
155 temp2 = temp1 - cw; in wins_wch()
160 while (temp1 > temp2 + cw) { in wins_wch()
161 np = temp1->nsp; in wins_wch()
168 temp1->nsp = NULL; in wins_wch()
170 temp1->ch = win->bch; in wins_wch()
171 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR) in wins_wch()
173 temp1->attr = win->battr; in wins_wch()
174 temp1 in wins_wch()
[all...]
H A Dinsstr.c145 __LDATA *end, *temp1, *temp2; in winsnstr() local
167 temp1 = &win->alines[win->cury]->line[win->maxx - 1]; in winsnstr()
168 temp2 = temp1 - len; in winsnstr()
171 np = temp1->nsp; in winsnstr()
178 temp1->nsp = NULL; in winsnstr()
181 (void)memcpy(temp1, temp2, sizeof(__LDATA)); in winsnstr()
182 temp1--, temp2--; in winsnstr()
186 for (scp = str, temp1 = end, x = win->curx; in winsnstr()
188 scp++, temp1++, x++) in winsnstr()
190 temp1 in winsnstr()
[all...]
H A Dins_wstr.c133 __LDATA *start, *temp1, *temp2; in wins_nwstr() local
317 temp1 = &win->alines[y]->line[win->maxx - 1]; in wins_nwstr()
318 temp2 = temp1 - width; in wins_nwstr()
325 while (temp1 > temp2 + width) { in wins_nwstr()
326 temp1->ch = win->bch; in wins_nwstr()
327 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR) { in wins_nwstr()
331 temp1->attr = win->battr; in wins_nwstr()
332 temp1->cflags |= CA_BACKGROUND; in wins_nwstr()
333 temp1->cflags &= ~CA_CONTINUATION; in wins_nwstr()
334 temp1 in wins_nwstr()
[all...]
/netbsd-src/external/lgpl3/mpfr/dist/tune/
H A Dbidimensional_sample.c344 mpfr_t temp1, temp2; in virtual_timing_ai1() local
359 mpfr_init2 (temp1, MPFR_SMALL_PRECISION); in virtual_timing_ai1()
362 mpfr_set (temp1, x, MPFR_SMALL_PRECISION); in virtual_timing_ai1()
367 mpfr_mul_si (temp1, temp1, MPFR_AI_THRESHOLD1, MPFR_RNDN); in virtual_timing_ai1()
369 mpfr_mul_si (temp1, temp1, MPFR_AI_THRESHOLD3, MPFR_RNDN); in virtual_timing_ai1()
371 mpfr_add (temp1, temp1, temp2, MPFR_RNDN); in virtual_timing_ai1()
373 if (mpfr_cmp_si (temp1, MPFR_AI_SCALE) > 0) in virtual_timing_ai1()
378 mpfr_clear (temp1); in virtual_timing_ai1()
391 mpfr_t temp1, temp2; in virtual_timing_ai2() local
406 mpfr_init2 (temp1, MPFR_SMALL_PRECISION); in virtual_timing_ai2()
[all …]
/netbsd-src/external/lgpl3/gmp/dist/tests/mpz/
H A Dt-gcd.c34 mpz_t gcd1, gcd2, s, temp1, temp2, temp3; variable
96 mpz_t bs, temp1, temp2; in make_chain_operands() local
99 mpz_inits (bs, temp1, temp2, NULL); in make_chain_operands()
117 mpz_mul (temp1, b, temp2); in make_chain_operands()
118 mpz_add (a, a, temp1); in make_chain_operands()
124 mpz_mul (temp1, a, temp2); in make_chain_operands()
125 mpz_add (b, b, temp1); in make_chain_operands()
128 mpz_clears (bs, temp1, temp2, NULL); in make_chain_operands()
233 mpz_inits (bs, op1, op2, ref, gcd1, gcd2, temp1, temp2, temp3, s, NULL); in main()
293 mpz_gcdext (NULL, temp1, temp2, op1, op2); in main()
[all …]
/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dai.c68 mpfr_t temp1, temp2; in mpfr_ai1() local
193 mpfr_init2 (temp1, wprec); in mpfr_ai1()
215 mpfr_gamma_one_and_two_third (temp1, temp2, wprec); in mpfr_ai1()
223 mpfr_mul (tip1, tip1, temp1, MPFR_RNDN); in mpfr_ai1()
307 mpfr_clear (temp1); in mpfr_ai1()
340 mpfr_t temp1, temp2; in mpfr_ai2() local
428 mpfr_init2 (temp1, wprec); in mpfr_ai2()
463 mpfr_gamma_one_and_two_third (temp1, temp2, wprec); in mpfr_ai2()
471 mpfr_mul (u1, u1, temp1, MPFR_RNDN); in mpfr_ai2()
619 mpfr_clear (temp1); in mpfr_ai2()
[all …]
/netbsd-src/games/phantasia/
H A Dinterplayer.c673 double temp1 = 0.0, temp2 = 0.0; /* other tampering values */ in dotampered() local
707 sscanf(Databuf, "%lf %lf", &temp1, &temp2); in dotampered()
708 Enrgyvoid.ev_x = floor(temp1); in dotampered()
719 temp1 = infloat(); in dotampered()
720 if (temp1 > Player.p_gold || temp1 < 0) { in dotampered()
733 fread((char *) &temp1, sizeof(double), 1, fp); in dotampered()
740 mvprintw(4, 0, "You have collected %.0f in gold.\n", temp1); in dotampered()
741 Player.p_gold += floor(temp1); in dotampered()
783 temp1 = distance(Player.p_x, Enrgyvoid.ev_x, Player.p_y, Enrgyvoid.ev_y); in dotampered()
784 temp1 += ROLL(-temp1 / 10.0, temp1 / 5.0); /* add some error */ in dotampered()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/cleanup/
H A Dcleanup_message.c267 vstring_sprintf(state->temp1, "%s: %s: %s %.200s from %s;", in cleanup_act_log()
270 vstring_sprintf_append(state->temp1, " from=<%s>", in cleanup_act_log()
273 vstring_sprintf_append(state->temp1, " to=<%s>", in cleanup_act_log()
276 vstring_sprintf_append(state->temp1, " proto=%s", attr); in cleanup_act_log()
278 vstring_sprintf_append(state->temp1, " helo=<%s>", attr); in cleanup_act_log()
280 vstring_sprintf_append(state->temp1, ": %s", text); in cleanup_act_log()
281 msg_info("%s", vstring_str(state->temp1)); in cleanup_act_log()
719 vstring_sprintf(state->temp1, "%s@%s", in cleanup_header_done_callback()
725 vstring_sprintf(state->temp1, "%s.%s@%s", in cleanup_header_done_callback()
729 state->resent, vstring_str(state->temp1)); in cleanup_header_done_callback()
[all …]
H A Dcleanup_masquerade.c130 masq = casefold(state->temp1, masq); in cleanup_masquerade_external()
225 state.temp1 = vstring_alloc(100); in main()
233 vstring_free(state.temp1); in main()
H A Dcleanup_milter.c249 vstring_sprintf(state->temp1, "%s: milter-%s-%s: %s %.200s from %s[%s];", in cleanup_milter_hbc_log()
253 vstring_sprintf_append(state->temp1, " from=<%s>", in cleanup_milter_hbc_log()
256 vstring_sprintf_append(state->temp1, " to=<%s>", in cleanup_milter_hbc_log()
259 vstring_sprintf_append(state->temp1, " proto=%s", attr); in cleanup_milter_hbc_log()
261 vstring_sprintf_append(state->temp1, " helo=<%s>", attr); in cleanup_milter_hbc_log()
263 vstring_sprintf_append(state->temp1, ": %s", optional_text); in cleanup_milter_hbc_log()
264 msg_info("%s", vstring_str(state->temp1)); in cleanup_milter_hbc_log()
1940 vstring_sprintf(state->temp1, "%s [%s]", in cleanup_milter_eval()
1943 vstring_strcat(state->temp1, " (may be forged)"); in cleanup_milter_eval()
1944 return (STR(state->temp1)); in cleanup_milter_eval()
[all …]
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
H A Dsha256.c153 uint32_t temp1, temp2; in swap_uint32_t() local
155 temp1 = cshift(t, 16); in swap_uint32_t()
156 temp2 = temp1 >> 8; in swap_uint32_t()
157 temp1 &= 0x00ff00ff; in swap_uint32_t()
159 temp1 <<= 8; in swap_uint32_t()
160 return temp1 | temp2; in swap_uint32_t()
H A Dmd4.c161 uint32_t temp1, temp2; in swap_uint32_t() local
163 temp1 = cshift(t, 16); in swap_uint32_t()
164 temp2 = temp1 >> 8; in swap_uint32_t()
165 temp1 &= 0x00ff00ff; in swap_uint32_t()
167 temp1 <<= 8; in swap_uint32_t()
168 return temp1 | temp2; in swap_uint32_t()
H A Dsha.c211 uint32_t temp1, temp2; in swap_uint32_t() local
213 temp1 = cshift(t, 16); in swap_uint32_t()
214 temp2 = temp1 >> 8; in swap_uint32_t()
215 temp1 &= 0x00ff00ff; in swap_uint32_t()
217 temp1 <<= 8; in swap_uint32_t()
218 return temp1 | temp2; in swap_uint32_t()
H A Dmd5.c185 uint32_t temp1, temp2; in swap_uint32_t() local
187 temp1 = cshift(t, 16); in swap_uint32_t()
188 temp2 = temp1 >> 8; in swap_uint32_t()
189 temp1 &= 0x00ff00ff; in swap_uint32_t()
191 temp1 <<= 8; in swap_uint32_t()
192 return temp1 | temp2; in swap_uint32_t()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dfixed-value.c418 double_int r, s, temp1, temp2; in do_fixed_multiply() local
438 temp1.high = high_low.low; in do_fixed_multiply()
439 temp1.low = 0; in do_fixed_multiply()
440 s = low_low + temp1; in do_fixed_multiply()
442 || s.ult (temp1)) in do_fixed_multiply()
444 temp1.high = s.high; in do_fixed_multiply()
445 temp1.low = s.low; in do_fixed_multiply()
448 s = temp1 + temp2; in do_fixed_multiply()
449 if (s.ult (temp1) in do_fixed_multiply()
453 temp1.low = high_low.high; in do_fixed_multiply()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dfixed-bit.c283 INTunion r, s, temp1, temp2; in FIXED_MULHELPER() local
310 temp1.s.high = high_low.s.low; in FIXED_MULHELPER()
311 temp1.s.low = 0; in FIXED_MULHELPER()
312 s.ll = low_low.ll + temp1.ll; in FIXED_MULHELPER()
314 || (UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll) in FIXED_MULHELPER()
316 temp1.ll = s.ll; in FIXED_MULHELPER()
319 s.ll = temp1.ll + temp2.ll; in FIXED_MULHELPER()
320 if ((UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll in FIXED_MULHELPER()
324 temp1.s.low = high_low.s.high; in FIXED_MULHELPER()
325 temp1.s.high = 0; in FIXED_MULHELPER()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/
H A Dfixed-bit.c283 INTunion r, s, temp1, temp2; in FIXED_MULHELPER() local
310 temp1.s.high = high_low.s.low; in FIXED_MULHELPER()
311 temp1.s.low = 0; in FIXED_MULHELPER()
312 s.ll = low_low.ll + temp1.ll; in FIXED_MULHELPER()
314 || (UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll) in FIXED_MULHELPER()
316 temp1.ll = s.ll; in FIXED_MULHELPER()
319 s.ll = temp1.ll + temp2.ll; in FIXED_MULHELPER()
320 if ((UINT_C_TYPE) s.ll < (UINT_C_TYPE) temp1.ll in FIXED_MULHELPER()
324 temp1.s.low = high_low.s.high; in FIXED_MULHELPER()
325 temp1.s.high = 0; in FIXED_MULHELPER()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dfixed-value.cc418 double_int r, s, temp1, temp2; in do_fixed_multiply() local
438 temp1.high = high_low.low; in do_fixed_multiply()
439 temp1.low = 0; in do_fixed_multiply()
440 s = low_low + temp1; in do_fixed_multiply()
442 || s.ult (temp1)) in do_fixed_multiply()
444 temp1.high = s.high; in do_fixed_multiply()
445 temp1.low = s.low; in do_fixed_multiply()
448 s = temp1 + temp2; in do_fixed_multiply()
449 if (s.ult (temp1) in do_fixed_multiply()
453 temp1.low = high_low.high; in do_fixed_multiply()
[all …]
/netbsd-src/external/lgpl3/gmp/dist/tests/mpn/
H A Dt-hgcd.c60 mpz_t op1, op2, temp1, temp2; in main() local
72 mpz_init (temp1); in main()
137 mpz_mul (temp1, op2, temp2); in main()
138 mpz_add (op1, op1, temp1); in main()
148 mpz_mul (temp1, op1, temp2); in main()
149 mpz_add (op2, op2, temp1); in main()
165 mpz_clear (temp1); in main()
H A Dt-hgcd_appr.c50 mpz_t op1, op2, temp1, temp2; in main() local
73 mpz_init (temp1); in main()
118 mpz_mul (temp1, op2, temp2); in main()
119 mpz_add (op1, op1, temp1); in main()
129 mpz_mul (temp1, op1, temp2); in main()
130 mpz_add (op2, op2, temp1); in main()
146 mpz_clear (temp1); in main()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/des/asm/
H A Ddes_enc.m4630 define({temp1},{out4})
641 sll out5, 29, temp1
649 or $2, temp1, $2
651 srl $2, 1, temp1
652 xor temp1, $1, temp1
654 and temp1, ip5, temp1
657 sll temp1, 1, temp2
658 xor $1, temp1, $1
667 srl $1, 8, temp1
672 xor temp1, $2, temp1
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/des/asm/
H A Ddes_enc.m4628 define({temp1},{out4})
639 sll out5, 29, temp1
647 or $2, temp1, $2
649 srl $2, 1, temp1
650 xor temp1, $1, temp1
652 and temp1, ip5, temp1
655 sll temp1, 1, temp2
656 xor $1, temp1, $1
665 srl $1, 8, temp1
670 xor temp1, $2, temp1
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/shtest-shell/
H A Dvalid-shell.txt59 # RUN: echo "create a temp1 file" > %T/test/test1/temp1.write
61 # RUN: %{python} %S/check_path.py file %T/test/temp.write %T/test/test1/temp1.write %T/test/test2/t…
85 # RUN: cd %T/dir1 && echo "hello" > temp1.txt
87 # RUN: diff temp2.txt ../dir1/temp1.txt
105 # RUN: echo "abcdefgh" > %T/testCat/temp1.write
108 # RUN: cat %T/testCat/temp1.write %T/testCat/temp2.write %T/testCat/temp3.write > %T/testCat/tempmu…
121 # RUN: echo "abcdefgh" > %T/testCat/temp1.write
123 # RUN: cat %T/testCat/temp1.write %T/testCat/temp2.write | FileCheck --check-prefix=PIPED-CAT-OUTPU…
131 # RUN: echo "cvbnm" > %T/testCat/temp1.write

12345