Searched refs:inlen (Results 1 – 6 of 6) sorted by relevance
/iconv/ |
A D | loop.c | 384 size_t inlen; in SINGLE() local 395 for (inlen = 0; inlen < (size_t) (state->__count & 7); ++inlen) in SINGLE() 396 bytebuf[inlen] = state->__value.__wchb[inlen]; in SINGLE() 411 bytebuf[inlen++] = *inptr++; in SINGLE() 416 inend = &bytebuf[inlen]; in SINGLE() 424 for (; inlen < inlen_after; inlen++) in SINGLE() 438 if (inlen >= MAX_NEEDED_INPUT) in SINGLE() 445 bytebuf[inlen++] = *inptr++; in SINGLE() 449 inend = &bytebuf[inlen]; in SINGLE() 495 for (inlen = 0; inlen < inend - inptr; inlen++) in SINGLE() [all …]
|
A D | tst-iconv6.c | 32 size_t inlen; in do_test() local 57 inlen = sizeof (inbuf); in do_test() 61 n = iconv (cd, &inptr, &inlen, &outptr, &outlen); in do_test() 84 if (inlen != sizeof (inbuf) - sizeof (uint32_t)) in do_test() 87 , inlen, sizeof (inbuf) - sizeof (uint32_t)); in do_test()
|
A D | tst-iconv2.c | 34 size_t inlen; in do_test() local 51 inlen = sizeof (wchar_t); in do_test() 55 n = iconv (cd, &inptr, &inlen, &outptr, &outlen); in do_test() 77 if (inlen != sizeof (wchar_t)) in do_test()
|
A D | tst-iconv-opt.c | 43 size_t inlen, outlen; in test_iconv() local 50 inlen = strlen (input); in test_iconv() 56 n = iconv (cd, &inptr, &inlen, &outptr, &outlen); in test_iconv()
|
A D | iconv_charmap.c | 292 size_t inlen = sizeof (inbuf); in convert_charseq() local 296 (void) iconv (cd, &inptr, &inlen, &outptr, &outlen); in convert_charseq()
|
A D | gconv_simple.c | 1132 inlen = state->__count & 255; \ 1138 if (--ntotal < inlen) \
|
Completed in 16 milliseconds