Lines Matching defs:temp1
94 __LDATA *end, *temp1, *temp2;
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;
115 temp1->cflags |= CA_BACKGROUND;
117 temp1->cflags &= ~ CA_BACKGROUND;
120 temp1->attr = (attr_t) ch & __ATTRIBUTES;
121 if (temp1->attr & __COLOR)
122 temp1->attr |= (win->battr & ~__COLOR);
124 temp1->attr |= win->battr;
126 if (_cursesi_copy_nsp(win->bnsp, temp1) == ERR)
128 temp1->wcols = 1;