Searched refs:pending_out (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/lib/libz/
H A Ddeflate.h102 Bytef *pending_out; /* next pending byte to output to the stream */ member in struct:internal_state
H A Ddeflate.c408 s->pending_out = s->pending_buf;
474 if ((Bytef *)(s->d_buf) < s->pending_out + ((Buf_size + 7) >> 3))
653 zmemcpy(strm->next_out, s->pending_out, len);
655 s->pending_out += len;
660 s->pending_out = s->pending_buf;
1057 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.h99 Bytef *pending_out; /* next pending byte to output to the stream */ member in struct:internal_state
H A Ddeflate.c379 s->pending_out = s->pending_buf;
546 zmemcpy(strm->next_out, strm->state->pending_out, len);
548 strm->state->pending_out += len;
553 strm->state->pending_out = strm->state->pending_buf;
943 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
/freebsd-10.0-release/sys/net/
H A Dzlib.c357 Bytef *pending_out; /* next pending byte to output to the stream */ member in struct:deflate_state
890 s->pending_out = s->pending_buf;
970 zmemcpy(strm->next_out, s->pending_out, len);
973 s->pending_out += len;
978 s->pending_out = s->pending_buf;
1187 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);

Completed in 100 milliseconds