Lines Matching refs:outbuf

163 				char **outbuf, size_t *outbytesleft)  in _icv_iconv()  argument
180 if (outbytesleft && *outbytesleft >= 1 && outbuf && *outbuf) { in _icv_iconv()
181 **outbuf = SI; in _icv_iconv()
182 (*outbuf)++; in _icv_iconv()
212 outbuf == NULL || *outbuf == NULL){ in _icv_iconv()
236 n = ascii_to_iso(NON_ID_CHAR, st, outbuf, outbytesleft); in _icv_iconv()
241 n = ascii_to_iso(**inbuf, st, outbuf, outbytesleft); in _icv_iconv()
251 n = big5_to_iso(idx, st, outbuf, outbytesleft); in _icv_iconv()
260 n = ascii_to_iso(NON_ID_CHAR, st, outbuf, outbytesleft); in _icv_iconv()
263 n = ascii_to_iso(NON_ID_CHAR, st, outbuf, outbytesleft); in _icv_iconv()
358 static int ascii_to_iso(char c, _iconv_st *st, char **outbuf, in ascii_to_iso() argument
362 **outbuf = SI; in ascii_to_iso()
363 (*outbuf)++; in ascii_to_iso()
373 **outbuf = c; in ascii_to_iso()
374 (*outbuf)++; in ascii_to_iso()
401 static int big5_to_iso(int idx, _iconv_st *st, char **outbuf, in big5_to_iso() argument
430 **outbuf = ESC; in big5_to_iso()
431 *(*outbuf+1) = '$'; in big5_to_iso()
432 *(*outbuf+2) = ')'; in big5_to_iso()
433 *(*outbuf+3) = GET_PLANEC(cnsplane); in big5_to_iso()
434 (*outbuf) += 4; in big5_to_iso()
448 **outbuf = SO; in big5_to_iso()
449 (*outbuf)++; in big5_to_iso()
464 **outbuf = ESC; in big5_to_iso()
465 *(*outbuf+1) = '$'; in big5_to_iso()
466 *(*outbuf+2) = '*'; in big5_to_iso()
467 *(*outbuf+3) = GET_PLANEC(cnsplane); in big5_to_iso()
468 (*outbuf) += 4; in big5_to_iso()
480 **outbuf = ESC; in big5_to_iso()
481 *(*outbuf+1) = SS2; in big5_to_iso()
482 (*outbuf) += 2; in big5_to_iso()
504 **outbuf = ESC; in big5_to_iso()
505 *(*outbuf+1) = '$'; in big5_to_iso()
506 *(*outbuf+2) = '+'; in big5_to_iso()
507 *(*outbuf+3) = GET_PLANEC(cnsplane); in big5_to_iso()
508 (*outbuf) += 4; in big5_to_iso()
521 **outbuf = ESC; in big5_to_iso()
522 *(*outbuf+1) = SS3; in big5_to_iso()
523 (*outbuf) += 2; in big5_to_iso()
547 **outbuf = cnsbytes[0]; in big5_to_iso()
548 *(*outbuf+1) = cnsbytes[1]; in big5_to_iso()
549 (*outbuf) += 2; in big5_to_iso()