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

  /external/freetype/src/gzip/
inflate.c 47 uInt wbits; /* log2(window size) (8..15, defaults to 15) */ member in struct:internal_state
121 z->state->wbits = (uInt)w;
169 if ((z->state->sub.method >> 4) + 8 > z->state->wbits)
  /external/python/cpython3/Modules/clinic/
zlibmodule.c.h 47 "decompress($module, data, /, wbits=MAX_WBITS, bufsize=DEF_BUF_SIZE)\n"
54 " wbits\n"
63 zlib_decompress_impl(PyObject *module, Py_buffer *data, int wbits,
70 static const char * const _keywords[] = {"", "wbits", "bufsize", NULL};
73 int wbits = MAX_WBITS; local
77 &data, &wbits, ssize_t_converter, &bufsize)) {
80 return_value = zlib_decompress_impl(module, &data, wbits, bufsize);
93 " wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL,\n"
105 " wbits\n"
125 zlib_compressobj_impl(PyObject *module, int level, int method, int wbits,
136 int wbits = MAX_WBITS; local
180 int wbits = MAX_WBITS; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.h 88 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.h 92 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zlibmodule.c 107 "decompressobj([wbits]) -- Return a decompressor object.\n"
109 "Optional arg wbits is the window buffer size.");
209 "decompress(string[, wbits[, bufsize]]) -- Return decompressed string.\n"
211 "Optional arg wbits is the window buffer size. Optional arg bufsize is\n"
313 int wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL, strategy=0, err; local
315 if (!PyArg_ParseTuple(args, "|iiiii:compressobj", &level, &method, &wbits,
326 err = deflateInit2(&self->zst, level, method, wbits, memLevel, strategy);
350 int wbits=DEF_WBITS, err; local
352 if (!PyArg_ParseTuple(args, "|i:decompressobj", &wbits))
362 err = inflateInit2(&self->zst, wbits);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zlibmodule.c 101 "decompressobj([wbits]) -- Return a decompressor object.\n"
103 "Optional arg wbits is the window buffer size.");
203 "decompress(string[, wbits[, bufsize]]) -- Return decompressed string.\n"
205 "Optional arg wbits is the window buffer size. Optional arg bufsize is\n"
307 int wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL, strategy=0, err; local
309 if (!PyArg_ParseTuple(args, "|iiiii:compressobj", &level, &method, &wbits,
320 err = deflateInit2(&self->zst, level, method, wbits, memLevel, strategy);
344 int wbits=DEF_WBITS, err; local
346 if (!PyArg_ParseTuple(args, "|i:decompressobj", &wbits))
356 err = inflateInit2(&self->zst, wbits);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inflate.h 95 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /external/python/cpython2/Modules/zlib/
inflate.h 92 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /external/python/cpython2/Modules/
zlibmodule.c 108 "decompressobj([wbits]) -- Return a decompressor object.\n"
110 "Optional arg wbits indicates the window buffer size and container format.");
280 "decompress(string[, wbits[, bufsize]]) -- Return decompressed string.\n"
282 "Optional arg wbits indicates the window buffer size and container format.\n"
385 int wbits=MAX_WBITS, memLevel=DEF_MEM_LEVEL, strategy=0, err; local
387 if (!PyArg_ParseTuple(args, "|iiiii:compressobj", &level, &method, &wbits,
398 err = deflateInit2(&self->zst, level, method, wbits, memLevel, strategy);
422 int wbits=DEF_WBITS, err; local
424 if (!PyArg_ParseTuple(args, "|i:decompressobj", &wbits))
434 err = inflateInit2(&self->zst, wbits);
    [all...]
  /external/python/cpython3/Modules/zlib/
inflate.h 95 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /external/syslinux/com32/lib/zlib/
inflate.h 92 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /external/zlib/src/
inflate.h 95 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /toolchain/binutils/binutils-2.27/zlib/
inflate.h 92 unsigned wbits; /* log base 2 of requested window size */ member in struct:inflate_state
  /external/fio/
iolog.c 826 int wbits = 15; local
839 wbits += 32;
841 if (inflateInit2(stream, wbits) != Z_OK)

Completed in 417 milliseconds