Searched defs:inflate (Results 1 - 18 of 18) sorted by relevance

/external/libpng/contrib/pngminim/encoder/
H A Ddummy_inflate.c3 int ZEXPORT inflate(strm, flush) function
/external/zlib/contrib/dotzlib/DotZLib/
H A DInflater.cs16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll
25 private static extern int inflate(ref ZStream sz, int flush); method in class:DotZLib.Inflater
67 err = inflate(ref _ztream, (int)FlushTypes.None);
72 err = inflate(ref _ztream, (int)FlushTypes.None);
89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
99 /// Closes the internal zlib inflate stream
/external/skia/src/views/
H A DSkViewPriv.cpp11 void SkView::Artist::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkView::Artist
57 void SkView::Layout::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkView::Layout
H A DSkViewInflate.cpp51 view->inflate(dom, node);
54 SkView* SkViewInflate::inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root) function in class:SkViewInflate
94 SkView* SkViewInflate::inflate(const char xml[], size_t len, SkView* root) function in class:SkViewInflate
99 return node ? this->inflate(dom, node, root) : NULL;
131 SkDebugf("inflate: listenTo(\"%s\")\n", iter->fStr);
136 SkDebugf("inflate: broadcastFrom(\"%s\")\n", iter->fStr);
H A DSkEvent.cpp145 void SkEvent::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkEvent
163 SkDEBUGCODE(SkDebugf("SkEvent::inflate unrecognized subelement <%s>\n", dom.getName(node));)
170 SkDEBUGCODE(SkDebugf("SkEvent::inflate missing required \"name\" attribute in <data> subelement\n");)
191 SkDebugf("SkEvent::inflate <data name=\"%s\"> subelement missing required type attribute [S32 | scalar | string]\n", name);
H A DSkView.cpp627 // inflate the flags
642 void SkView::inflate(const SkDOM& dom, const SkDOM::Node* node) function in class:SkView
/external/webkit/Source/WebCore/platform/graphics/
H A DRoundedIntRect.h88 void inflate(int size) { m_rect.inflate(size); } function in class:WebCore::RoundedIntRect
89 void inflateWithRadii(int size) { m_rect.inflate(size); m_radii.expand(size); }
H A DFloatRect.h131 void inflate(float d) { inflateX(d); inflateY(d); } function in class:WebCore::FloatRect
H A DIntRect.h164 void inflate(int d) { inflateX(d); inflateY(d); } function in class:WebCore::IntRect
/external/zlib/contrib/pascal/
H A Dzlibpas.pas88 function inflate(var strm: z_stream; flush: Integer): Integer; function
151 {$L inflate.obj}
172 function inflate; external; function
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.c0 /* inflate.c -- zlib decompression
10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
53 * source file infback.c to provide a call-back interface to inflate fo
554 int ZEXPORT inflate(strm, flush) function
[all...]
H A Dzconf.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/zlib/contrib/delphi/
H A DZLib.pas206 {$L inflate.obj}
246 // inflate decompresses data
249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; function
347 while DCheck(inflate(strm, Z_NO_FLUSH)) <> Z_STREAM_END do
380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then
517 CCheck(inflate(FZRec, 0));
/external/zlib/
H A Dinflate.c0 /* inflate.c -- zlib decompression
10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
39 * buffer and bit count in inflate()--for speed when inflate_fast() not used
43 * - Move a comment on output buffer sizes from inffast.c to inflate.c
53 * source file infback.c to provide a call-back interface to inflate fo
589 int ZEXPORT inflate(strm, flush) function
[all...]
H A Dzconf.in.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
H A Dzconf.h81 # define inflate z_inflate macro
231 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/chromium/sdch/open-vcdiff/src/
H A Dzconf.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/openssl/crypto/comp/
H A Dc_zlib.c123 #define inflate p_inflate macro
235 err = inflate(&state->istream, Z_SYNC_FLUSH);
327 err = inflate(&stream, Z_FINISH);
363 "inflate");
566 ret = inflate(zin, 0);

Completed in 291 milliseconds