Searched refs:inflate (Results 76 - 100 of 179) sorted by relevance

12345678

/external/toybox/toys/pending/
H A Dcompress.c1 /* compress.c - deflate/inflate code for zip, gzip, zlib, and raw
5 * The inflate/deflate code lives here, so the various things that use it
96 if (bb->len < 1) perror_exit("inflate EOF");
230 static void inflate(struct bitbuf *bb) function
387 // Allocate memory for deflate/inflate.
497 inflate(bb);
/external/freetype/src/gzip/
H A Dinflate.c0 /* inflate.c -- zlib interface to inflate modules
29 /* inflate private state */
33 inflate_mode mode; /* current inflate mode */
63 Tracev((stderr, "inflate: reset\n"));
77 Tracev((stderr, "inflate: end\n"));
131 Tracev((stderr, "inflate: allocated\n"));
147 ZEXPORT(int) inflate( /* z, f) */ function
187 Tracev((stderr, "inflate: zlib header ok\n"));
260 Tracev((stderr, "inflate
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream.cc90 // previous inflate filled output buffer. don't change input params yet.
113 int error = inflate(&zcontext_, flush);
/external/python/cpython2/PC/bdist_wininst/
H A Dextract.c177 if (Z_STREAM_END != (x = inflate(&zstream, Z_FINISH))) {
180 "inflate returns %d", x);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAppWidgetManager.java129 * @param widgetLayoutId id of the layout to inflate
140 * @param widgetLayoutId id of the layout to inflate
166 return new Activity().getLayoutInflater().inflate(widgetLayoutId, null);
H A DShadowView.java184 * @param resource the ID of the resource to inflate
189 public static View inflate(Context context, int resource, ViewGroup root) { method in class:ShadowView
190 return ShadowLayoutInflater.from(context).inflate(resource, root);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DDialogFragmentTest.java196 return inflater.inflate(R.layout.main, null);
H A DDialogTest.java155 dialog.setContentView(dialog.getLayoutInflater().inflate(R.layout.main, null));
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DScriptProcessMonitor.java234 itemView = inflater.inflate(R.layout.script_monitor_list_item, parent, false);
H A DInterpreterManager.java240 container = (LinearLayout) inflater.inflate(R.layout.list_item, null);
/external/syslinux/com32/include/
H A Dzconf.h81 # define inflate z_inflate macro
231 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
H A DAutoRunFragment.java209 View view = inflater.inflate(R.layout.fragment_auto_run, container, false);
H A DAudioFragment.java91 View view = inflater.inflate(R.layout.fragment_audio, container, false);
H A DHistogramChart.java47 inflate(getContext(), R.layout.histogram, this);
H A DTapLatencyFragment.java151 final View view = inflater.inflate(R.layout.fragment_tap_latency, container, false);
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DHudFragment.java46 controlView = inflater.inflate(R.layout.fragment_hud, container, false);
/external/zlib/src/contrib/testzlib/
H A Dtestzlib.c250 ret=inflate(&zcpr,Z_SYNC_FLUSH);
/external/pdfium/third_party/zlib_v128/
H A Dzlib.h64 #define inflate FPDFAPI_inflate macro
240 /* Allowed flush values; see deflate() and inflate() below for details */
272 /* Possible values of the data_type field (though see inflate()) */
445 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
454 will be done by inflate(). (So next_in and avail_in may be modified, but
457 until inflate() is called.
461 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
463 inflate decompresses as much data as possible, and stops when the input
468 The detailed semantics are as follows. inflate performs one or both of the
474 resume at this point for the next call of inflate()
[all...]
H A Dzconf.h94 # define inflate z_inflate macro
258 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/curl/lib/
H A Dcontent_encoding.c115 status = inflate(z, Z_SYNC_FLUSH);
359 /* We don't have any data to inflate yet */
393 /* We still don't have any data to inflate! */
414 /* We don't have any data to inflate; wait until next time */
H A Dsetup-vms.h384 #define inflate INFLATE macro
/external/python/cpython2/Modules/zlib/
H A Dzconf.h94 # define inflate z_inflate macro
258 The memory requirements for inflate are (in bytes) 1 << windowBits
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
H A DNumberPicker.java107 inflater.inflate(R.layout.number_picker, this, true);
/external/zlib/src/examples/
H A Dgzjoin.c52 inflate() and the crc32_combine() function. gzjoin will not compile with
61 /* crc32(), crc32_combine(), inflateInit2(), inflate(), inflateEnd() */
289 z_stream strm; /* zlib inflate stream */
297 /* allocate buffer for uncompressed data and initialize raw inflate
309 /* inflate and copy compressed data, clear last-block bit if requested */
329 ret = inflate(&strm, Z_BLOCK);
/external/zlib/src/
H A Dzconf.h94 # define inflate z_inflate macro
258 The memory requirements for inflate are (in bytes) 1 << windowBits

Completed in 802 milliseconds

12345678