Lines Matching refs:pout
443 char *buf, *pin, *pout; in SLPEscape() local
454 for (pin = (char *)pcInbuf, pout = buf; *pin; ) { in SLPEscape()
461 *pout++ = *pin++; in SLPEscape()
472 (void) sprintf(pout, "\\%.2x", *pin); in SLPEscape()
473 pout += 3; in SLPEscape()
476 *pout++ = *pin++; in SLPEscape()
479 *pout = 0; in SLPEscape()
497 char *buf, *pin, *pout, conv[3]; in slp_unescape() local
506 for (pin = (char *)pcInbuf, pout = buf; *pin; ) { in slp_unescape()
513 *pout++ = *pin++; in slp_unescape()
523 *pout++ = (char)strtol(conv, NULL, 16); in slp_unescape()
524 if (isTag && isBadTagChar(*pout)) in slp_unescape()
527 *pout++ = *pin++; in slp_unescape()
530 *pout = 0; in slp_unescape()