Home
last modified time | relevance | path

Searched refs:wwibp (Results 1 – 5 of 5) sorted by relevance

/original-bsd/usr.bin/window/
H A Dmloop.c35 if (wwibp >= wwibq) in mloop()
37 for (p = wwibp; p < wwibq && wwmaskc(*p) != escapec; in mloop()
40 if ((n = p - wwibp) > 0) { in mloop()
46 (void) write(w->ww_pty, wwibp++, 1); in mloop()
48 (void) write(w->ww_pty, wwibp, n); in mloop()
49 wwibp = p; in mloop()
H A Dww.h233 char *wwibp; /* current read position in buffer */ variable
236 #define wwgetc() (wwibp < wwibq ? wwmaskc(*wwibp++) : -1)
237 #define wwpeekc() (wwibp < wwibq ? wwmaskc(*wwibp) : -1)
238 #define wwungetc(c) (wwibp > wwib ? *--wwibp = (c) : -1)
H A Dwwrint.c36 if (wwibp == wwibq) in wwrint()
37 wwibp = wwibq = wwib; in wwrint()
H A DREADME103 wwib wwibp wwibq wwibe
106 = c), and characters are taken off the buffer at wwibp using the
H A Dwwinit.c178 wwibq = wwibp = wwib; in wwinit()