Lines Matching defs:out
227 size_t iconv(iconv_t cd, char **restrict in, size_t *restrict inb, char **restrict out, size_t *restrict outb)
476 memcpy(*out, &tmp, tmplen);
477 *out += tmplen;
530 *(wchar_t *)*out = c;
531 *out += sizeof(wchar_t);
539 memcpy(*out, tmp, k);
540 } else k = wctomb_utf8(*out, c);
541 *out += k;
551 *(*out)++ = c;
583 *(*out)++ = (c+1)/2 + (c<95 ? 112 : 176);
584 *(*out)++ = c%2 ? d + 31 + d/96 : d + 126;
596 *(*out)++ = c/256 + 0x80;
597 *(*out)++ = c%256 + 0x80;
604 *(*out)++ = '\033';
605 *(*out)++ = '(';
607 *(*out)++ = 'J';
608 *(*out)++ = '\\';
610 *(*out)++ = 'J';
611 *(*out)++ = '~';
613 *(*out)++ = 'I';
614 *(*out)++ = c-0xff61+0x21;
616 *(*out)++ = '\033';
617 *(*out)++ = '(';
618 *(*out)++ = 'B';
625 *(*out)++ = '\033';
626 *(*out)++ = '$';
627 *(*out)++ = 'B';
628 *(*out)++ = c/256;
629 *(*out)++ = c%256;
630 *(*out)++ = '\033';
631 *(*out)++ = '(';
632 *(*out)++ = 'B';
645 put_16((void *)*out, c, totype);
646 *out += 2;
652 put_16((void *)*out, (c>>10)|0xd800, totype);
653 put_16((void *)(*out + 2), (c&0x3ff)|0xdc00, totype);
654 *out += 4;
662 put_32((void *)*out, c, totype);
663 *out += 4;