OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:w_size
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/zlib/
deflate.c
274
s->
w_size
= 1 << s->w_bits;
275
s->w_mask = s->
w_size
- 1;
282
s->window = (Bytef *) ZALLOC(strm, s->
w_size
, 2*sizeof(Byte));
283
s->prev = (Posf *) ZALLOC(strm, s->
w_size
, sizeof(Pos));
335
if (length > s->
w_size
) {
336
length = s->
w_size
;
829
s->class_bitmap = (Bytef*) ZALLOC(strm, s->
w_size
/4, sizeof(Byte));
830
zmemzero(s->class_bitmap, s->
w_size
/4);
[
all
...]
deflate.h
112
uInt
w_size
; /* LZ77 window size (32K by default) */
member in struct:internal_state
113
uInt w_bits; /* log2(
w_size
) (8..16) */
114
uInt w_mask; /*
w_size
- 1 */
288
#define MAX_DIST(s) ((s)->
w_size
-MIN_LOOKAHEAD)
/external/bluetooth/bluedroid/stack/include/
obx_api.h
[
all
...]
Completed in 57 milliseconds