Home
last modified time | relevance | path

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

/components/lwp/terminal/freebsd/
A Dtty_inq.c69 #define GETBIT(tib, boff) \ argument
70 ((tib)->tib_quotes[(boff) / BMSIZE] & (1 << ((boff) % BMSIZE)))
72 ((tib)->tib_quotes[(boff) / BMSIZE] |= (1 << ((boff) % BMSIZE)))
74 ((tib)->tib_quotes[(boff) / BMSIZE] &= ~(1 << ((boff) % BMSIZE)))
294 unsigned int boff; in ttyinq_write() local
379 while (boff < bend) in ttyinq_findchar()
381 if (strchr(breakc, tib->tib_data[boff]) && !GETBIT(tib, boff)) in ttyinq_findchar()
386 boff++; in ttyinq_findchar()
412 unsigned int boff; in ttyinq_peekchar() local
459 unsigned int boff; in ttyinq_line_iterate() local
[all …]
A Dtty_outq.c298 unsigned int boff; in ttyoutq_write() local
303 boff = to->to_end % TTYOUTQ_DATASIZE; in ttyoutq_write()
317 else if (boff == 0) in ttyoutq_write()
334 l = MIN(nbytes, TTYOUTQ_DATASIZE - boff); in ttyoutq_write()
336 memcpy(tob->tob_data + boff, cbuf, l); in ttyoutq_write()

Completed in 4 milliseconds