Searched refs:temp1 (Results 1 - 25 of 83) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Ddelch.c90 __LDATA *end, *temp1, *temp2; local
94 temp1 = &win->alines[win->cury]->line[win->curx];
95 temp2 = temp1 + 1;
96 while (temp1 < end) {
97 (void) memcpy(temp1, temp2, sizeof(__LDATA));
98 temp1++, temp2++;
100 temp1->ch = win->bch;
102 temp1->attr = win->battr & __COLOR;
104 temp1->attr = 0;
113 temp1
[all...]
H A Dinsch.c92 __LDATA *end, *temp1, *temp2; local
100 temp1 = &win->alines[win->cury]->line[win->maxx - 1];
101 temp2 = temp1 - 1;
102 while (temp1 > end) {
103 (void) memcpy(temp1, temp2, sizeof(__LDATA));
104 temp1--, temp2--;
106 temp1->ch = (wchar_t) ch & __CHARTEXT;
107 if (temp1->ch == ' ')
108 temp1->ch = win->bch;
109 temp1
[all...]
H A Dins_wstr.c136 __LDATA *start, *temp1, *temp2;
206 temp1 = &win->alines[win->cury]->line[win->maxx - 1];
207 temp2 = temp1 - width;
216 while (temp1 > temp2 + width) {
217 temp1->ch = (wchar_t)btowc((int) win->bch);
218 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR)
220 temp1->attr = win->battr;
221 SET_WCOL(*temp1, 1);
224 "wins_nwstr: empty cell(%p)\n", temp1);
226 temp1
[all...]
H A Dinsstr.c138 __LDATA *end, *temp1, *temp2; local
161 temp1 = &win->alines[win->cury]->line[win->maxx - 1];
162 temp2 = temp1 - len;
165 np = temp1->nsp;
172 temp1->nsp = NULL;
175 (void) memcpy(temp1, temp2, sizeof(__LDATA));
176 temp1--, temp2--;
180 for ( scp = str, temp1 = end, x = win->curx;
182 scp++, temp1++, x++ ) {
183 temp1
[all...]
H A Dins_wch.c103 __LDATA *start, *temp1, *temp2;
177 temp1 = &win->alines[ y ]->line[ win->maxx - 1 ];
178 temp2 = temp1 - cw;
185 while ( temp1 > temp2 + cw ) {
186 np = temp1->nsp;
193 temp1->nsp = NULL;
195 temp1->ch = ( wchar_t )btowc(( int ) win->bch );
196 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR)
198 temp1->attr = win->battr;
199 SET_WCOL( *temp1,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.pt/
H A Dt23.C3 template <class T> class temp1 class
13 temp1<T2> t1var;
17 temp1<int> temp1var;
H A Dttp45.C6 template<class M> struct temp1;
7 template<template<class> class M, class T> struct temp1<M<T> > {}; struct
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.pt/
H A Dt23.C3 template <class T> class temp1 class
13 temp1<T2> t1var;
17 temp1<int> temp1var;
H A Dttp45.C6 template<class M> struct temp1;
7 template<template<class> class M, class T> struct temp1<M<T> > {}; struct
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/lto/
H A D20091004-3_0.C14 double temp1; local
16 VLength(temp1, TempV);
17 VLength(temp1, TempV);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcrash20.C8 Complex temp1; local
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcrash20.C8 Complex temp1; local
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dsimd-2.c12 floatvect2 temp1={y[0],y[1]}; local
14 temp2.vector=temp+temp1;
H A Dsimd-4.c12 floatvect2 temp1=*y; local
14 *x=temp+temp1;
H A Dsimd-3.c17 floatvect2 temp1={y[0],y[1]}; local
19 temp2.vector=temp+temp1;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20020320-1.c13 fixed = ({ int temp1 = 2; temp1; }) - ({ int temp2 = 1; temp2; });
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A Dsimd-2.c12 floatvect2 temp1={y[0],y[1]}; local
14 temp2.vector=temp+temp1;
H A Dsimd-4.c12 floatvect2 temp1=*y; local
14 *x=temp+temp1;
H A Dsimd-3.c17 floatvect2 temp1={y[0],y[1]}; local
19 temp2.vector=temp+temp1;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20020320-1.c13 fixed = ({ int temp1 = 2; temp1; }) - ({ int temp2 = 1; temp2; });
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/fixed-point/
H A Dnoassoc.c20 /* Don't transform to ((temp1 + temp2) * 0.5r) */
21 _Sat _Fract mul_add_test (_Sat _Fract temp1, _Sat _Fract temp2) argument
23 return temp1 * 0.5r + temp2 * 0.5r;
26 /* Don't transform to ((temp1 - temp2) * 0.5r) */
27 _Sat _Fract mul_sub_test (_Sat _Fract temp1, _Sat _Fract temp2) argument
29 return temp1 * 0.5r - temp2 * 0.5r;
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/cleanup/
H A Dcleanup_map1n.c140 quote_822_local(state->temp1, argv->argv[arg]);
141 if ((lookup = mail_addr_map(maps, STR(state->temp1), propagate)) != 0) {
144 unquote_822_local(state->temp1, lookup->argv[i]);
146 UPDATE(argv->argv[arg], STR(state->temp1));
148 argv_add(argv, STR(state->temp1), ARGV_END);
155 if (strcasecmp(saved_lhs, STR(state->temp1)) == 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/opt/
H A Dalias2.C68 deque temp1; variable
72 yyy (GeometryAddress (temp1));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/parse/
H A Dprimary-expression-1.C44 const _eSeq<_eHndl<VarInstances> > temp1 = local
48 >(_eHndl<VarInstances>(testInstance))._oPlusPlus(temp1)._oHash() ==
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/opt/
H A Dalias2.C68 deque temp1; variable
72 yyy (GeometryAddress (temp1));

Completed in 315 milliseconds

1234