Searched refs:_rl_screenwidth (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/contrib/libreadline/
H A Dterminal.c176 int _rl_screenwidth, _rl_screenheight, _rl_screenchars; variable
251 _rl_screenwidth = wc;
255 _rl_screenwidth = _rl_screenheight = -1;
260 if (_rl_screenwidth <= 0)
263 _rl_screenwidth = atoi (ss);
265 if (_rl_screenwidth <= 0)
266 _rl_screenwidth = wc;
269 if (_rl_screenwidth <= 0 && term_string_buffer)
270 _rl_screenwidth = tgetnum ("co");
291 if (_rl_screenwidth <
[all...]
H A Ddisplay.c192 (or is equal to) _rl_screenwidth. */
306 if (invflset == 0 && rl >= _rl_screenwidth)
314 if (rl < _rl_screenwidth)
590 if (lpos >= _rl_screenwidth) \
607 if (lpos >= _rl_screenwidth) \
638 /* what if lpos is already >= _rl_screenwidth before we start drawing the
640 while (lpos >= _rl_screenwidth)
658 if (z > _rl_screenwidth)
663 else if (z == _rl_screenwidth)
671 temp = ((newlines + 1) * _rl_screenwidth);
[all...]
H A Drlprivate.h413 extern int _rl_screenwidth;
H A Dreadline.c1049 _rl_screenwidth--;
H A Dcomplete.c1265 limit = _rl_screenwidth / max;
1266 if (limit != 1 && (limit * max == _rl_screenwidth))
1269 /* Avoid a possible floating exception. If max > _rl_screenwidth,

Completed in 62 milliseconds