Home
last modified time | relevance | path

Searched refs:newdat (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/ncurses/ncurses/win32con/
H A Dwin32_driver.c271 struct ldat *newdat = NewScreen(sp)->_line + row; in find_end_of_change() local
273 while (col <= newdat->lastchar) { in find_end_of_change()
276 isWidecExt(newdat->text[col])) { in find_end_of_change()
279 &newdat->text[col], in find_end_of_change()
286 if (curdat->text[col] != newdat->text[col]) { in find_end_of_change()
305 struct ldat *newdat = NewScreen(sp)->_line + row; in find_next_change() local
306 int result = newdat->lastchar + 1; in find_next_change()
308 while (++col <= newdat->lastchar) { in find_next_change()
311 isWidecExt(newdat->text[col])) { in find_next_change()
315 &newdat->text[col], in find_next_change()
[all …]
H A Dwin_driver.c362 struct ldat *newdat = NewScreen(sp)->_line + row; in find_end_of_change() local
364 while (col <= newdat->lastchar) { in find_end_of_change()
366 if (isWidecExt(curdat->text[col]) || isWidecExt(newdat->text[col])) { in find_end_of_change()
369 &newdat->text[col], in find_end_of_change()
376 if (curdat->text[col] != newdat->text[col]) { in find_end_of_change()
395 struct ldat *newdat = NewScreen(sp)->_line + row; in find_next_change() local
396 int result = newdat->lastchar + 1; in find_next_change()
398 while (++col <= newdat->lastchar) { in find_next_change()
400 if (isWidecExt(curdat->text[col]) != isWidecExt(newdat->text[col])) { in find_next_change()
404 &newdat->text[col], in find_next_change()
[all …]