Searched refs:w_size (Results 1 – 6 of 6) sorted by relevance
/external/zlib/src/ |
D | deflate.c | 285 s->w_size = 1 << s->w_bits; 286 s->w_mask = s->w_size - 1; 293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 347 if (dictLength >= s->w_size) { 354 dictionary += dictLength - s->w_size; /* use the tail */ 355 dictLength = s->w_size; 1040 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); 1041 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); 1052 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte)); [all …]
|
D | deflate.h | 112 uInt w_size; /* LZ77 window size (32K by default) */ member 286 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
D | fx_zlib_deflate.c | 284 s->w_size = 1 << s->w_bits; in deflateInit2_() 285 s->w_mask = s->w_size - 1; in deflateInit2_() 292 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_() 293 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); in deflateInit2_() 346 if (dictLength >= s->w_size) { in deflateSetDictionary() 353 dictionary += dictLength - s->w_size; /* use the tail */ in deflateSetDictionary() 354 dictLength = s->w_size; in deflateSetDictionary() 1039 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); in deflateCopy() 1040 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); in deflateCopy() 1051 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte)); in deflateCopy() [all …]
|
D | deflate.h | 112 uInt w_size; /* LZ77 window size (32K by default) */ member 286 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
|
/external/chromium-trace/trace-viewer/tracing/third_party/jszip/ |
D | jszip.min.js | 13 …w_size-jb?a.strstart-(a.w_size-jb):0,j=a.window,k=a.w_mask,l=a.prev,m=a.strstart+ib,n=j[f+g-1],o=j…
|
/external/llvm/test/CodeGen/X86/ |
D | zlib-longest-match.ll | 42 %w_size = getelementptr inbounds %struct.internal_state, %struct.internal_state* %s, i64 0, i32 11 43 %5 = load i32, i32* %w_size, align 4
|