Searched refs:pending_buf (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/uts/common/zmod/ |
H A D | deflate.c | 300 s->pending_buf = (uchf *) overlay; 304 s->pending_buf == Z_NULL) { 311 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize; 379 s->pending_out = s->pending_buf; 553 strm->state->pending_out = strm->state->pending_buf; 622 strm->adler = crc32(strm->adler, s->pending_buf, 665 strm->adler = crc32(strm->adler, s->pending_buf + beg, 676 strm->adler = crc32(strm->adler, s->pending_buf + beg, 694 strm->adler = crc32(strm->adler, s->pending_buf + beg, 707 strm->adler = crc32(strm->adler, s->pending_buf + beg, [all …]
|
H A D | deflate.h | 97 Bytef *pending_buf; /* output still pending */ member 268 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
|
/titanic_50/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 366 Bytef *pending_buf; /* output still pending */ member 568 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c); } 925 s->pending_buf = (uchf *) overlay; 929 s->pending_buf == Z_NULL) { 936 s->l_buf = s->pending_buf + (1+sizeof (ush))*s->lit_bufsize; 1012 s->pending_out = s->pending_buf; 1109 s->pending_out = s->pending_buf; 1288 TRY_FREE(strm, s->pending_buf); 1334 ds->pending_buf = (uchf *) overlay; 1337 ds->pending_buf == Z_NULL) { [all …]
|
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 219 Bytef *pending_buf; /* output still pending */ member 394 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} 639 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 2*sizeof(ush)); 642 s->pending_buf == Z_NULL) { 647 s->d_buf = (ushf *) &(s->pending_buf[s->lit_bufsize]); 648 s->l_buf = (uchf *) &(s->pending_buf[3*s->lit_bufsize]); 678 s->pending_out = s->pending_buf; 726 state->pending_out = state->pending_buf; 864 TRY_FREE(strm, state->pending_buf, state->lit_bufsize * 2 * sizeof(ush));
|