Lines Matching refs:outlen
86 size_t inlen, outlen; in nls_str_toloc() local
93 inlen = outlen = strlen(src); in nls_str_toloc()
94 my_iconv(nls_toloc, NULL, NULL, &p, &outlen); in nls_str_toloc()
95 my_iconv(nls_toloc, &src, &inlen, &p, &outlen); in nls_str_toloc()
104 size_t inlen, outlen; in nls_str_toext() local
111 inlen = outlen = strlen(src); in nls_str_toext()
112 my_iconv(nls_toext, NULL, NULL, &p, &outlen); in nls_str_toext()
113 my_iconv(nls_toext, &src, &inlen, &p, &outlen); in nls_str_toext()
123 size_t inlen, outlen; in nls_mem_toloc() local
133 inlen = outlen = size; in nls_mem_toloc()
134 my_iconv(nls_toloc, NULL, NULL, &p, &outlen); in nls_mem_toloc()
135 my_iconv(nls_toloc, &s, &inlen, &p, &outlen); in nls_mem_toloc()
144 size_t inlen, outlen; in nls_mem_toext() local
152 inlen = outlen = size; in nls_mem_toext()
153 my_iconv(nls_toext, NULL, NULL, &p, &outlen); in nls_mem_toext()
154 my_iconv(nls_toext, &s, &inlen, &p, &outlen); in nls_mem_toext()