Searched defs:roomleft (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/csh/
H A Dsh.lex.c1284 int roomleft; local
1320 roomleft = BUFSIZ - off;
1324 if (c > roomleft) {
1327 roomleft * sizeof (tchar));
1328 copy(fbuf[buf + 1], ttyline + roomleft,
1329 (c - roomleft) * sizeof (tchar));
1335 c = read_(SHIN, fbuf[buf] + off, roomleft);
1336 if (c > roomleft) {
1339 fbuf[buf] + off + roomleft,
1340 (c - roomleft) * sizeo
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dldterm.c2655 size_t roomleft; local
2732 roomleft = bpt->b_datap->db_lim - bpt->b_wptr;
2733 if (roomleft == 0) {
2750 roomleft = IBSIZE;
2752 DEBUG5(("roomleft=%d, bytes_in_bp=%d, tp->t_rd_request=%d\n",
2753 roomleft, bytes_in_bp, tp->t_rd_request));
2762 bytes_to_move = MIN(roomleft, bytes_in_bp);
2765 MIN(MIN(roomleft, bytes_in_bp), tp->t_rd_request);

Completed in 69 milliseconds