Lines Matching defs:pout
439 char *buf, *pin, *pout;
450 for (pin = (char *)pcInbuf, pout = buf; *pin; ) {
457 *pout++ = *pin++;
468 (void) sprintf(pout, "\\%.2x", *pin);
469 pout += 3;
472 *pout++ = *pin++;
475 *pout = 0;
493 char *buf, *pin, *pout, conv[3];
502 for (pin = (char *)pcInbuf, pout = buf; *pin; ) {
509 *pout++ = *pin++;
519 *pout++ = (char)strtol(conv, NULL, 16);
520 if (isTag && isBadTagChar(*pout))
523 *pout++ = *pin++;
526 *pout = 0;