HomeSort by relevance Sort by last modified time
    Searched refs:windowBits (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketDeflater.h 55 static PassOwnPtr<WebSocketDeflater> create(int windowBits, ContextTakeOverMode = TakeOverContext);
70 WebSocketDeflater(int windowBits, ContextTakeOverMode);
82 static PassOwnPtr<WebSocketInflater> create(int windowBits = 15);
95 explicit WebSocketInflater(int windowBits);
WebSocketPerMessageDeflate.h 50 void enable(int windowBits, WebSocketDeflater::ContextTakeOverMode);
WebSocketDeflateFramer.cpp 85 int windowBits = 15;
88 windowBits = parameter->value.toInt();
89 if (windowBits < 8 || windowBits > 15) {
112 m_framer->enableDeflate(windowBits, mode);
162 void WebSocketDeflateFramer::enableDeflate(int windowBits, WebSocketDeflater::ContextTakeOverMode mode)
164 m_deflater = WebSocketDeflater::create(windowBits, mode);
WebSocketPerMessageDeflate.cpp 87 int windowBits = 15;
108 windowBits = clientMaxWindowBits->value.toIntStrict(&ok);
109 if (!ok || windowBits < 8 || windowBits > 15 || clientMaxWindowBits->value[0] == '+' || clientMaxWindowBits->value[0] == '0') {
141 m_compress.enable(windowBits, mode);
158 void WebSocketPerMessageDeflate::enable(int windowBits, WebSocketDeflater::ContextTakeOverMode mode)
160 m_deflater = WebSocketDeflater::create(windowBits, mode);
WebSocketDeflater.cpp 48 PassOwnPtr<WebSocketDeflater> WebSocketDeflater::create(int windowBits, ContextTakeOverMode contextTakeOverMode)
50 return adoptPtr(new WebSocketDeflater(windowBits, contextTakeOverMode));
53 WebSocketDeflater::WebSocketDeflater(int windowBits, ContextTakeOverMode contextTakeOverMode)
54 : m_windowBits(windowBits)
147 PassOwnPtr<WebSocketInflater> WebSocketInflater::create(int windowBits)
149 return adoptPtr(new WebSocketInflater(windowBits));
152 WebSocketInflater::WebSocketInflater(int windowBits)
153 : m_windowBits(windowBits)
WebSocketDeflateFramer.h 105 void enableDeflate(int windowBits, WebSocketDeflater::ContextTakeOverMode);
  /external/freetype/src/gzip/
zlib.h 399 int windowBits,
410 The windowBits parameter is the base two logarithm of the window size
420 usage as a function of windowBits and memLevel.
518 int windowBits));
524 The windowBits parameter is the base two logarithm of the maximum window
    [all...]
  /development/ndk/platforms/android-3/include/
zlib.h 483 int windowBits,
494 The windowBits parameter is the base two logarithm of the window size
500 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
504 windowBits can also be greater than 15 for optional gzip encoding. Add
505 16 to windowBits to write a simple gzip header and trailer around the
515 usage as a function of windowBits and memLevel.
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/zlib/
zlib.h 483 int windowBits,
494 The windowBits parameter is the base two logarithm of the window size
500 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
504 windowBits can also be greater than 15 for optional gzip encoding. Add
505 16 to windowBits to write a simple gzip header and trailer around the
515 usage as a function of windowBits and memLevel.
    [all...]
  /external/chromium_org/third_party/zlib/contrib/minizip/
zip.h 227 int windowBits,
244 int windowBits,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
270 int windowBits,
291 int windowBits,
zip.c 1059 int windowBits,int memLevel, int strategy,
    [all...]
  /external/chromium_org/third_party/zlib/
zlib.h 526 int windowBits,
537 The windowBits parameter is the base two logarithm of the window size
543 windowBits can also be -8..-15 for raw deflate. In this case, -windowBits
547 windowBits can also be greater than 15 for optional gzip encoding. Add
548 16 to windowBits to write a simple gzip header and trailer around the
558 as a function of windowBits and memLevel.
    [all...]
inflate.c 130 int ZEXPORT inflateReset2(strm, windowBits)
132 int windowBits;
141 /* extract wrap request from windowBits parameter */
142 if (windowBits < 0) {
144 windowBits = -windowBits;
147 wrap = (windowBits >> 4) + 1;
149 if (windowBits < 48)
150 windowBits &= 15;
155 if (windowBits && (windowBits < 8 || windowBits > 15)
    [all...]
infback.c 25 windowBits is in the range 8..15, and window is a user-supplied
26 window and output buffer that is 2**windowBits bytes.
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
30 int windowBits;
41 windowBits < 8 || windowBits > 15)
55 state->wbits = windowBits;
56 state->wsize = 1U << windowBits;
deflate.c 211 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
216 int windowBits;
250 if (windowBits < 0) { /* suppress zlib wrapper */
252 windowBits = -windowBits;
255 else if (windowBits > 15) {
257 windowBits -= 16;
261 windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
265 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed *
    [all...]
  /bootable/recovery/applypatch/
imgpatch.c 121 int windowBits = Read4(deflate_header+48);
208 ret = deflateInit2(&strm, level, method, windowBits, memLevel, strategy);
imgdiff.c 80 * windowBits (4)
94 * windowBits (4)
157 int level, method, windowBits, memLevel, strategy;
534 chunk->level, chunk->method, chunk->windowBits,
545 ret = deflateInit2(&strm, chunk->level, chunk->method, chunk->windowBits,
570 * we started with. Sets the level, method, windowBits, memLevel, and
586 chunk->windowBits = -15; // 32kb window; negative to indicate a raw stream.
    [all...]
  /external/libpng/
pngwutil.c 245 * deflate header) to correct the windowBits value to match the actual data
256 if (data_size <= 16384) /* else windowBits must be 15 */
330 int windowBits = png_ptr->zlib_window_bits;
352 windowBits = png_ptr->zlib_text_window_bits;
365 /* Adjust 'windowBits' down if larger than 'data_size'; to stop this
369 * next windowBits size we need to fix up the value later. (Because even
379 unsigned int half_window_size = 1U << (windowBits-1);
384 --windowBits;
392 png_ptr->zlib_set_window_bits != windowBits ||
418 ret = deflateInit2(&png_ptr->zstream, level, method, windowBits,
    [all...]

Completed in 2805 milliseconds