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