Lines Matching defs:length
302 int length;
324 * any of this data and we need to remember the length.
335 if (!buffer->length) {
339 if (buffer->length > inl) {
343 buffer->length -= inl;
347 memmove(in, buffer->value, buffer->length);
348 inl = buffer->length;
350 buffer->length = 0;
359 buffer->length = inl;
421 if (consume >= b->length) {
428 b->length -= consume;
431 else if (b->length == 0) {
606 if (inctx->cbuf.length > 0) {
608 inctx->cbuf.length += bytes;
745 * length *LEN; updating *len to reflect the length of the line
786 int length;
791 length = *len - bytes;
793 char_buffer_write(&inctx->cbuf, value, length);
1384 apr_size_t len = sizeof(inctx->buffer); /* length of block to return */
1448 if (inctx->cbuf.length
1450 inctx->cbuf.length)) != NULL) {
1455 inctx->cbuf.length -= len;
1585 * only data buckets with known length, and must be of a total
1595 && e->length != (apr_size_t)-1
1596 && e->length < COALESCE_BYTES
1597 && (bytes + e->length) < COALESCE_BYTES
1599 || bytes + ctx->bytes + e->length < COALESCE_BYTES);
1602 if (e->length) count++; /* don't count zero-length buckets */
1603 bytes += e->length;
1636 || e->length == (apr_size_t)-1) {
1642 if (e->length) {
1646 * known-length data bucket, rather than the usual
1659 "unexpected coalesced bucket data length");
1812 apr_off_t total = 0; /* total length buffered */
1955 * length, just pass it all back. */
2024 inctx->cbuf.length = 0;