HomeSort by relevance Sort by last modified time
    Searched defs:window_bits (Results 1 - 7 of 7) sorted by null

  /external/brotli/enc/
ringbuffer.h 23 /* A RingBuffer(window_bits, tail_bits) contains `1 << window_bits' bytes of
25 `position() % (1 << window_bits)'.
28 buffer_[i] == buffer_[i + (1 << window_bits)], if i < (1 << tail_bits),
30 buffer_[-1] == buffer_[(1 << window_bits) - 1] and
31 buffer_[-2] == buffer_[(1 << window_bits) - 2]. */
33 /* Size of the ring-buffer is (1 << window_bits) + tail_size_. */
58 int window_bits = ComputeRbBits(params); local
60 *(uint32_t*)&rb->size_ = 1u << window_bits;
61 *(uint32_t*)&rb->mask_ = (1u << window_bits) - 1
    [all...]
  /bootable/recovery/applypatch/
imgpatch.cpp 56 int window_bits = Read4(deflate_header + 48); local
66 int ret = deflateInit2(strm.get(), level, method, window_bits, mem_level, strategy);
  /external/brotli/dec/
state.h 219 uint32_t window_bits; member in struct:BrotliDecoderStateStruct
  /external/libpng/
pngrutil.c 376 int window_bits; local
381 window_bits = 15;
387 window_bits = 0;
391 # define window_bits 0 macro
408 ret = inflateReset2(&png_ptr->zstream, window_bits);
417 ret = inflateInit2(&png_ptr->zstream, window_bits);
433 #ifdef window_bits
434 # undef window_bits macro
    [all...]
  /external/pdfium/third_party/libpng16/
pngrutil.c 376 int window_bits; local
381 window_bits = 15;
387 window_bits = 0;
391 # define window_bits 0 macro
408 ret = inflateReset2(&png_ptr->zstream, window_bits);
417 ret = inflateInit2(&png_ptr->zstream, window_bits);
433 #ifdef window_bits
434 # undef window_bits macro
    [all...]
  /external/skia/third_party/libpng/
pngrutil.c 376 int window_bits; local
381 window_bits = 15;
387 window_bits = 0;
391 # define window_bits 0 macro
408 ret = inflateReset2(&png_ptr->zstream, window_bits);
417 ret = inflateInit2(&png_ptr->zstream, window_bits);
433 #ifdef window_bits
434 # undef window_bits macro
    [all...]
  /external/libpng/contrib/tools/
pngfix.c 2036 int window_bits; \/* 0 if no change *\/ member in struct:zlib
    [all...]

Completed in 157 milliseconds