Lines Matching refs:codep
381 char *codep; in ptout1() local
518 codep = t.codetab[k-_SPECCHAR_ST]; in ptout1()
519 while (*codep != 0) { in ptout1()
520 if (*codep & 0200) { in ptout1()
521 codep = plot(codep); in ptout1()
524 if (*codep == '%') /* escape */ in ptout1()
525 codep++; in ptout1()
526 oput(*codep); in ptout1()
527 if (*codep == '\033') in ptout1()
528 oput(*++codep); in ptout1()
529 else if (*codep != '\b') in ptout1()
532 oput(*codep); in ptout1()
534 codep++; in ptout1()