Searched refs:inflate (Results 1 - 25 of 82) sorted by relevance

1234

/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/include/views/
H A DSkViewInflate.h32 as a view, otherwise assume root is that view, and just "inflate" it.
36 SkView* inflate(const SkDOM& dom, const SkDOM::Node* node, SkView* root = NULL);
37 SkView* inflate(const char xml[], size_t len, SkView* root = NULL);
50 Do not call "inflate" on the view, just return it. This will
54 /** Base implementation calls view->inflate(dom, node). Subclasses may override this
H A DSkView.h239 void inflate(const SkDOM&, const SkDOM::Node*);
263 void inflate(const SkDOM&, const SkDOM::Node*);
284 void inflate(const SkDOM& dom, const SkDOM::Node* node);
H A DSkEvent.h145 void inflate(const SkDOM&, const SkDOM::Node*);
/external/zlib/contrib/delphi/
H A Dzlibd32.mak22 OBJ2 = inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
43 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
46 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
49 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
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/contrib/pascal/
H A Dzlibd32.mak22 OBJ2 = inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
24 OBJP2 = +inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
43 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
46 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
49 inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
H A Dexample.pas226 * Test inflate with small buffers
252 err := inflate(d_stream, Z_NO_FLUSH);
255 CHECK_ERR(err, 'inflate');
262 EXIT_ERR('bad inflate')
264 WriteLn('inflate(): ', PChar(uncompr));
321 * Test inflate with large buffers
345 err := inflate(d_stream, Z_NO_FLUSH);
348 CHECK_ERR(err, 'large inflate');
356 WriteLn('bad large inflate: ', d_stream.total_out);
427 inflate(d_strea
[all...]
/external/libpng/contrib/pngminim/encoder/
H A Ddummy_inflate.c3 int ZEXPORT inflate(strm, flush) function
/external/qemu/distrib/zlib-1.2.3/
H A Duncompr.c50 err = inflate(&stream, Z_FINISH);
H A Dzconf.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/skia/src/views/
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 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
/external/zlib/
H A DAndroid.mk17 inflate.c \
49 inflate.c \
H A Duncompr.c50 err = inflate(&stream, Z_FINISH);
H A Dmake_vms.com80 infback.c zutil.h inftrees.h inflate.h inffast.h inffixed.h
83 $ CALL MAKE inflate.OBJ "CC ''CCOPT' inflate" -
84 inflate.c zutil.h zlib.h zconf.h infblock.h
280 deflate.obj, trees.obj, zutil.obj, inflate.obj, \
313 inflate.obj : inflate.c zutil.h zlib.h zconf.h
319 infback.obj : infback.c zutil.h inftrees.h inflate.h inffast.h inffixed.h
H A Dexample.c205 * Test inflate() with small buffers
229 err = inflate(&d_stream, Z_NO_FLUSH);
231 CHECK_ERR(err, "inflate");
238 fprintf(stderr, "bad inflate\n");
241 printf("inflate(): %s\n", (char *)uncompr);
301 * Test inflate() with large buffers
325 err = inflate(&d_stream, Z_NO_FLUSH);
327 CHECK_ERR(err, "large inflate");
334 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
404 inflate(
[all...]
H A Dzconf.h20 # define inflate z_inflate macro
159 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/libpng/contrib/pngminim/decoder/
H A Dmakefile19 infback$(O) inffast$(O) inflate$(O) inftrees$(O) \
/external/libpng/contrib/pngminim/preader/
H A Dmakefile35 infback$(O) inffast$(O) inflate$(O) inftrees$(O) \
/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);
/external/qemu/block/
H A Dcloop.c121 ret = inflate(&s->zstream, Z_FINISH);
/external/webkit/WebCore/platform/graphics/android/
H A Dandroid_graphics.cpp62 #define CURSOR_RING_OUTER_OUTSET 2 // used to inflate rects added to region
143 m_bounds.inflate(SkScalarCeil(CURSOR_RING_OUTER_DIAMETER));
/external/zlib/examples/
H A Dfitblk.c94 return last deflate() return value, or Z_MEM_ERROR if inflate()
106 ret = inflate(inf, Z_NO_FLUSH);
134 z_stream def, inf; /* zlib deflate and inflate states */
H A Dzpipe.c1 /* zpipe.c: example of proper use of zlib's inflate() and deflate()
8 Use switch statement for inflate() return values
90 /* allocate inflate state */
111 /* run inflate() on input until output buffer not full */
115 ret = inflate(&strm, Z_NO_FLUSH);
132 /* done when inflate() says it's done */

Completed in 3673 milliseconds

1234