Home
last modified time | relevance | path

Searched refs:pending_buf (Results 1 - 14 of 14) sorted by relevance

/third_party/node/deps/zlib/
H A Ddeflate.c496 /* We overlay pending_buf and sym_buf. This works since the average size in deflateInit2_()
505 * sym_buf starts one-fourth of the way into pending_buf. So there are in deflateInit2_()
506 * three bytes in sym_buf for every four bytes in pending_buf. Each symbol in deflateInit2_()
510 * 31 bits are written to pending_buf. The closest the written pending_buf in deflateInit2_()
514 * 8*n bits into pending_buf. (Note that the symbol buffer fills when n - 1 in deflateInit2_()
535 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 5); in deflateInit2_()
537 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4); in deflateInit2_()
542 s->pending_buf == Z_NULL) { in deflateInit2_()
549 s->d_buf = (ushf *)(s->pending_buf in deflateInit2_()
[all...]
H A Ddeflate.h107 Bytef *pending_buf; /* output still pending */ member
108 ulg pending_buf_size; /* size of pending_buf */
288 * IN assertion: there is enough room in pending_buf.
290 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
H A Dtrees.c865 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len); in _tr_stored_block()
939 /* Check for no overlay of pending_buf on needed symbols */ in compress_block()
/third_party/zlib/
H A Ddeflate.c460 /* We overlay pending_buf and sym_buf. This works since the average size in deflateInit2_()
469 * sym_buf starts one-fourth of the way into pending_buf. So there are in deflateInit2_()
470 * three bytes in sym_buf for every four bytes in pending_buf. Each symbol in deflateInit2_()
474 * 31 bits are written to pending_buf. The closest the written pending_buf in deflateInit2_()
478 * 8*n bits into pending_buf. (Note that the symbol buffer fills when n - 1 in deflateInit2_()
499 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS); in deflateInit2_()
503 s->pending_buf == Z_NULL) { in deflateInit2_()
510 s->d_buf = (ushf *)(s->pending_buf + (s->lit_bufsize << 1)); in deflateInit2_()
511 s->l_buf = s->pending_buf in deflateInit2_()
[all...]
H A Ddeflate.h107 Bytef *pending_buf; /* output still pending */ member
108 ulg pending_buf_size; /* size of pending_buf */
285 * IN assertion: there is enough room in pending_buf.
287 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
H A Dtrees.c889 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len); in _tr_stored_block()
964 /* Check for no overlay of pending_buf on needed symbols */ in compress_block()
/third_party/node/deps/v8/third_party/zlib/
H A Ddeflate.c343 /* We overlay pending_buf and sym_buf. This works since the average size
352 * sym_buf starts one-fourth of the way into pending_buf. So there are
353 * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
357 * 31 bits are written to pending_buf. The closest the written pending_buf
361 * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1
381 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
385 s->pending_buf == Z_NULL) {
391 s->sym_buf = s->pending_buf + s->lit_bufsize;
533 s->pending_out = s->pending_buf;
[all...]
H A Ddeflate.h103 Bytef *pending_buf; /* output still pending */ member
104 ulg pending_buf_size; /* size of pending_buf */
274 * IN assertion: there is enough room in pending_buf.
276 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
H A Dtrees.c874 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
1082 /* Check that the overlay between pending_buf and sym_buf is ok: */
/third_party/skia/third_party/externals/zlib/
H A Ddeflate.c338 /* We overlay pending_buf and sym_buf. This works since the average size
347 * sym_buf starts one-fourth of the way into pending_buf. So there are
348 * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
352 * 31 bits are written to pending_buf. The closest the written pending_buf
356 * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1
376 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
380 s->pending_buf == Z_NULL) {
386 s->sym_buf = s->pending_buf + s->lit_bufsize;
528 s->pending_out = s->pending_buf;
[all...]
H A Ddeflate.h103 Bytef *pending_buf; /* output still pending */ member
104 ulg pending_buf_size; /* size of pending_buf */
274 * IN assertion: there is enough room in pending_buf.
276 #define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
H A Dtrees.c873 zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
1081 /* Check that the overlay between pending_buf and sym_buf is ok: */
/third_party/libwebsockets/win32port/zlib/
H A Ddeflate.c284 /* We overlay pending_buf and sym_buf. This works since the average size
293 * sym_buf starts one-fourth of the way into pending_buf. So there are
294 * three bytes in sym_buf for every four bytes in pending_buf. Each symbol
298 * 31 bits are written to pending_buf. The closest the written pending_buf
302 * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1
323 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
327 s->pending_buf == Z_NULL) {
333 s->sym_buf = s->pending_buf + s->lit_bufsize;
406 s->pending_out = s->pending_buf;
[all...]
H A Ddeflate.h97 Bytef *pending_buf; /* output still pending */ member
98 ulg pending_buf_size; /* size of pending_buf */
268 * IN assertion: there is enough room in pending_buf.
270 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}

Completed in 19 milliseconds