Home
last modified time | relevance | path

Searched refs:_COST (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/lib/libcurses/screen/
H A Dmvcur.c113 cm = _COST(Cursor_address); in mvcur()
193 cost = _COST(Cursor_home); in _homefirst()
197 cost = _COST(Cursor_to_ll); in _homefirst()
238 st_1 = _COST(Cursor_down) * dy; in _mvvert()
239 st_n = _COST(Parm_down_cursor); in _mvvert()
242 st_1 = _COST(Cursor_up) * dy; in _mvvert()
243 st_n = _COST(Parm_up_cursor); in _mvvert()
247 cv = _COST(Row_address); in _mvvert()
287 ch = _COST(Row_address); in _mvhor()
293 hl = (_COST(Carriage_return) < LARGECOST) ? in _mvhor()
[all …]
H A Dwrefresh.c445 if (blnkx + _COST(Clr_eol) >= lastx) in _updateln()
557 if ((x - (redraw ? 0 : begns)) > _COST(Clr_bol)) { in _updateln()
809 cost = _COST(dcfixed) + (parm_dch ? _COST(Parm_dch) : in _useidch()
810 _COST(Delete_character) * idch); in _useidch()
870 cost_ich1 = idch * _COST(Insert_character); in _useidch()
872 cost = SP->phys_irm ? 0 : _COST(icfixed); in _useidch()
873 if (blnk > _COST(Parm_ich) && _COST(Parm_ich) < cost_ich1) in _useidch()
874 cost += _COST(Parm_ich); in _useidch()
879 if (parm_ich && _COST(Parm_ich) < cost_ich1) in _useidch()
880 cost = _COST(Parm_ich); in _useidch()
[all …]
H A Dinit_costs.c115 fprintf(outf, "icfixed %d=%d+%d\n", _COST(icfixed), in _init_costs()
122 fprintf(outf, "dcfixed %d\n", _COST(dcfixed)); in _init_costs()
H A Dcurshdr.h99 #define _COST(field) (SP->term_costs.field) macro