Lines Matching refs:pout
442 char *buf, *pin, *pout; in SLPEscape() local
453 for (pin = (char *)pcInbuf, pout = buf; *pin; ) { in SLPEscape()
460 *pout++ = *pin++; in SLPEscape()
471 (void) sprintf(pout, "\\%.2x", *pin); in SLPEscape()
472 pout += 3; in SLPEscape()
475 *pout++ = *pin++; in SLPEscape()
478 *pout = 0; in SLPEscape()
496 char *buf, *pin, *pout, conv[3]; in slp_unescape() local
505 for (pin = (char *)pcInbuf, pout = buf; *pin; ) { in slp_unescape()
512 *pout++ = *pin++; in slp_unescape()
522 *pout++ = (char)strtol(conv, NULL, 16); in slp_unescape()
523 if (isTag && isBadTagChar(*pout)) in slp_unescape()
526 *pout++ = *pin++; in slp_unescape()
529 *pout = 0; in slp_unescape()