Home | History | Annotate | Download | only in lib

Lines Matching refs:in_bytes

100     size_t in_bytes, out_bytes, rc;
119 in_bytes = out_bytes = length;
120 rc = iconv(data->outbound_cd, (const char **)&input_ptr, &in_bytes,
122 if((rc == ICONV_ERROR) || (in_bytes != 0)) {
160 size_t in_bytes, out_bytes, rc;
179 in_bytes = out_bytes = length;
180 rc = iconv(data->inbound_cd, (const char **)&input_ptr, &in_bytes,
182 if((rc == ICONV_ERROR) || (in_bytes != 0)) {
221 size_t in_bytes, out_bytes, rc;
240 in_bytes = out_bytes = length;
241 rc = iconv(data->utf8_cd, &input_ptr, &in_bytes,
243 if((rc == ICONV_ERROR) || (in_bytes != 0)) {