Lines Matching defs:temp1
90 __LDATA *end, *temp1, *temp2;
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;
117 temp1 = &win->alines[win->cury]->line[win->curx];
118 cw = temp1->wcols;
120 temp1 += cw;
122 cw = temp1->wcols;
124 np = temp1->nsp;
131 temp1->nsp = NULL;
134 temp2 = temp1 + cw;
135 while (temp1 < end - (cw - 1)) {
136 (void)memcpy(temp1, temp2, sizeof(__LDATA));
137 temp1++, temp2++;
140 while (temp1 <= end) {
141 temp1->ch = win->bch;
142 temp1->cflags |= CA_BACKGROUND;
143 temp1->cflags &= ~CA_CONTINUATION;
144 temp1->attr = win->battr;
145 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR)
147 temp1->wcols = 1;
148 temp1++;