HomeSort by: relevance | last modified time | path
    Searched defs:pending_buf (Results 1 - 2 of 2) sorted by relevancy

  /src/common/dist/zlib/
deflate.h 109 Bytef *pending_buf; /* output still pending */ member in struct:internal_state
110 ulg pending_buf_size; /* size of pending_buf */
287 * IN assertion: there is enough room in pending_buf.
289 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
  /src/sys/net/
zlib.c 371 Bytef *pending_buf; /* output still pending */ member in struct:deflate_state
372 ulg pending_buf_size; /* size of pending_buf */
539 * IN assertion: there is enough room in pending_buf.
541 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
821 /* We overlay pending_buf and d_buf+l_buf. This works since the average
876 s->pending_buf = (uchf *) overlay;
880 s->pending_buf == Z_NULL) {
887 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
954 s->pending_out = s->pending_buf;
1010 * pending_buf
    [all...]

Completed in 12 milliseconds