Lines Matching refs:codep
379 char *codep; in ptout1() local
516 codep = t.codetab[k-_SPECCHAR_ST]; in ptout1()
517 while (*codep != 0) { in ptout1()
518 if (*codep & 0200) { in ptout1()
519 codep = plot(codep); in ptout1()
522 if (*codep == '%') /* escape */ in ptout1()
523 codep++; in ptout1()
524 oput(*codep); in ptout1()
525 if (*codep == '\033') in ptout1()
526 oput(*++codep); in ptout1()
527 else if (*codep != '\b') in ptout1()
530 oput(*codep); in ptout1()
532 codep++; in ptout1()