Searched refs:boff (Results 1 – 2 of 2) sorted by relevance
69 #define GETBIT(tib, boff) \ argument70 ((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() local379 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() local459 unsigned int boff; in ttyinq_line_iterate() local[all …]
298 unsigned int boff; in ttyoutq_write() local303 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