Searched refs:boff (Results 1 – 2 of 2) sorted by relevance
72 #define GETBIT(tib,boff) \ argument73 ((tib)->tib_quotes[(boff) / BMSIZE] & (1 << ((boff) % BMSIZE)))75 ((tib)->tib_quotes[(boff) / BMSIZE] |= (1 << ((boff) % BMSIZE)))77 ((tib)->tib_quotes[(boff) / BMSIZE] &= ~(1 << ((boff) % BMSIZE)))285 unsigned int boff; in ttyinq_write() local365 while (boff < bend) { in ttyinq_findchar()366 if (strchr(breakc, tib->tib_data[boff]) && !GETBIT(tib, boff)) { in ttyinq_findchar()370 boff++; in ttyinq_findchar()397 unsigned int boff; in ttyinq_peekchar() local450 unsigned int boff; in ttyinq_line_iterate() local[all …]
284 unsigned int boff; in ttyoutq_write() local288 boff = to->to_end % TTYOUTQ_DATASIZE; in ttyoutq_write()299 } else if (boff == 0) { in ttyoutq_write()312 l = MIN(nbytes, TTYOUTQ_DATASIZE - boff); in ttyoutq_write()314 memcpy(tob->tob_data + boff, cbuf, l); in ttyoutq_write()