HomeSort by relevance Sort by last modified time
    Searched full:window_bits (Results 1 - 25 of 32) sorted by null

1 2

  /external/tensorflow/tensorflow/core/lib/io/
zlib_compression_options.h 41 // The window_bits parameter is the base two logarithm of the window size
52 // -window_bits determines the window size. deflate() will then generate raw
59 // window_bits can also be greater than 15 for optional gzip encoding. Add 16
60 // to window_bits to write a simple gzip header and trailer around the
67 // window_bits can also be zero to request that inflate use the window size
70 // While inflating, window_bits must be greater than or equal to the
71 // window_bits value provided used while compressing. If a compressed stream
74 int8 window_bits = MAX_WBITS; member in class:tensorflow::io::ZlibCompressionOptions
118 options.window_bits = -options.window_bits;
    [all...]
zlib_buffers_test.cc 167 output_options.window_bits = MAX_WBITS;
169 input_options.window_bits = output_options.window_bits - 1;
zlib_inputstream.cc 62 int status = inflateInit2(z_stream_.get(), zlib_options_.window_bits);
zlib_outputbuffer.cc 58 zlib_options_.compression_method, zlib_options_.window_bits,
  /external/brotli/c/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...]
  /external/brotli/c/dec/
state.h 216 uint32_t window_bits; member in struct:BrotliDecoderStateStruct
state.c 92 s->window_bits = 0;
decode.c     [all...]
  /system/core/libziparchive/
zip_archive_stream_entry.cc 136 static inline int zlib_inflateInit2(z_stream* stream, int window_bits) {
137 return inflateInit2(stream, window_bits);
zip_archive.cc 891 static inline int zlib_inflateInit2(z_stream* stream, int window_bits) {
892 return inflateInit2(stream, window_bits);
    [all...]
  /external/libpng/
pngwrite.c     [all...]
pngrutil.c 378 int window_bits = 0; local
384 window_bits = 15;
407 ret = inflateReset2(&png_ptr->zstream, window_bits);
416 ret = inflateInit2(&png_ptr->zstream, window_bits);
441 #ifdef window_bits
442 # undef window_bits macro
    [all...]
png.h     [all...]
libpng.3     [all...]
  /external/pdfium/third_party/libpng16/
pngwrite.c     [all...]
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...]
png.h     [all...]
  /bootable/recovery/applypatch/
imgpatch.cpp 58 int window_bits = Read4(deflate_header + 48); local
68 int ret = deflateInit2(&strm, level, method, window_bits, mem_level, strategy);
  /external/zlib/src/contrib/ada/
zlib.adb 195 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
200 Win_Bits : Thin.Int := Thin.Int (Window_Bits);
310 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
314 Win_Bits : Thin.Int := Thin.Int (Window_Bits);
zlib.ads 139 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
151 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
  /toolchain/binutils/binutils-2.27/zlib/contrib/ada/
zlib.adb 195 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
200 Win_Bits : Thin.Int := Thin.Int (Window_Bits);
310 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
314 Win_Bits : Thin.Int := Thin.Int (Window_Bits);
zlib.ads 139 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
151 Window_Bits : in Window_Bits_Type := Default_Window_Bits;
  /external/syslinux/com32/lib/libpng/
pngwrite.c     [all...]
  /external/libpng/contrib/tools/
pngfix.c 2035 int window_bits; \/* 0 if no change *\/ member in struct:zlib
    [all...]
  /external/brotli/c/include/brotli/
decode.h 83 BROTLI_ERROR_CODE(_ERROR_FORMAT_, WINDOW_BITS, -13) SEPARATOR \

Completed in 1572 milliseconds

1 2