Lines Matching full:nbchars
2999 int nbchars = 0;
3021 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
3022 if (nbchars < 0) {
3029 nbchars = len;
3030 ret = xmlBufferAdd(in->buffer, (xmlChar *) buf, nbchars);
3037 nbchars, in->buffer->use, in->buffer->size);
3039 return(nbchars);
3074 int nbchars = 0;
3132 nbchars = xmlCharEncInFunc(in->encoder, in->buffer, in->raw);
3133 if (nbchars < 0) {
3140 nbchars = len;
3141 in->buffer->use += nbchars;
3142 buffer[nbchars] = 0;
3147 nbchars, in->buffer->use, in->buffer->size);
3149 return(nbchars);
3193 int nbchars = 0; /* number of chars to output to I/O */
3233 nbchars = out->conv->use;
3238 nbchars = out->buffer->use;
3243 if ((nbchars < MINLEN) && (len <= 0))
3252 (const char *)out->conv->content, nbchars);
3257 (const char *)out->buffer->content, nbchars);
3268 written += nbchars;
3357 int nbchars = 0; /* number of chars to output to I/O */
3422 nbchars = out->conv->use;
3430 nbchars = out->buffer->use;
3435 if ((nbchars < MINLEN) && (len <= 0))
3444 (const char *)out->conv->content, nbchars);
3449 (const char *)out->buffer->content, nbchars);
3462 written += nbchars;
3510 int nbchars = 0, ret = 0;
3520 nbchars = xmlCharEncOutFunc(out->encoder, out->conv, out->buffer);
3521 if (nbchars < 0) {