Home
last modified time | relevance | path

Searched refs:inflate (Results 26 - 50 of 171) sorted by relevance

1234567

/kernel/linux/linux-6.6/arch/arm/kernel/
H A DMakefile97 CFLAGS_head-inflate-data.o := $(call cc-option,-Wframe-larger-than=10240)
98 obj-$(CONFIG_XIP_DEFLATED_DATA) += head-inflate-data.o
/kernel/linux/linux-5.10/arch/xtensa/boot/lib/
H A DMakefile6 zlib := inffast.c inflate.c inftrees.c
/third_party/libwebsockets/win32port/zlib/
H A Duncompr.c48 err = inflate(&stream, Z_FINISH);
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DInputMarginView.java62 inflater.inflate(R.layout.input_margin_view, this); in initializeViews()
H A DWorkloadView.java88 inflater.inflate(R.layout.workload_view, this); in initializeViews()
/kernel/linux/linux-6.6/arch/xtensa/boot/lib/
H A DMakefile6 zlib := inffast.c inflate.c inftrees.c
/third_party/nghttp2/src/
H A Dnghttp2_gzip.c62 rv = inflate(&inflater->zst, Z_NO_FLUSH); in nghttp2_gzip_inflate()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/audio_device/
H A DAudioDeviceAdapter.java49 rowView = inflater.inflate(R.layout.audio_devices, parent, false); in getDropDownView()
/third_party/skia/third_party/externals/oboe/samples/audio-device/src/main/java/com/google/oboe/samples/audio_device/
H A DAudioDeviceAdapter.java47 rowView = inflater.inflate(R.layout.audio_devices, parent, false); in getDropDownView()
/third_party/skia/third_party/externals/freetype/src/gzip/
H A Drules.mk49 $(GZIP_DIR)/inflate.c \
H A Dzlib.h297 inflate. If zalloc and zfree are set to Z_NULL, inflateInit updates them to
304 the zlib header if present: this will be done by inflate(). (So next_in and
309 ZEXTERN(int) inflate OF((z_streamp strm, int flush));
311 inflate decompresses as much data as possible, and stops when the input
316 The detailed semantics are as follows. inflate performs one or both of the
322 will resume at this point for the next call of inflate().
325 accordingly. inflate() provides as much output as possible, until there
329 Before the call of inflate(), the application should ensure that at least
334 call of inflate(). If inflate return
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_neighbor.c195 static void inflate(uint8_t *dst, const uint8_t *p1, int width, in inflate() function
251 else if (!strcmp(ctx->filter->name, "inflate")) in config_input()
252 s->filter = s->depth > 8 ? inflate16 : inflate; in config_input()
369 * the de/inflate filters only use the threshold* options. */
396 AVFILTER_DEFINE_CLASS_EXT(deflate_inflate, "deflate/inflate",
407 DEFINE_NEIGHBOR_FILTER(inflate, "Apply inflate effect.", deflate_inflate);
/third_party/mesa3d/src/intel/tools/
H A Derror2aub.c64 switch (inflate(&zstream, Z_SYNC_FLUSH)) { in zlib_inflate()
93 static int ascii85_decode(const char *in, uint32_t **out, bool inflate) in ascii85_decode() argument
124 if (!inflate) in ascii85_decode()
/third_party/node/deps/openssl/openssl/crypto/comp/
H A Dc_zlib.c110 # define inflate p_inflate macro
201 err = inflate(&state->istream, Z_SYNC_FLUSH); in zlib_stateful_expand_block()
226 p_inflate = (inflate_ft) DSO_bind_func(zlib_dso, "inflate"); in DEFINE_RUN_ONCE_STATIC()
398 ret = inflate(zin, 0); in bio_zlib_read()
/third_party/openssl/crypto/comp/
H A Dc_zlib.c110 # define inflate p_inflate macro
201 err = inflate(&state->istream, Z_SYNC_FLUSH); in zlib_stateful_expand_block()
226 p_inflate = (inflate_ft) DSO_bind_func(zlib_dso, "inflate"); in DEFINE_RUN_ONCE_STATIC()
398 ret = inflate(zin, 0); in bio_zlib_read()
/test/xts/acts/bundlemanager/zlib/actszlibtest/
H A DActsZlibTest.cpp254 * @tc.name : Test inflate
281 err = inflate(&d_stream, Z_NO_FLUSH); in HWTEST_F()
285 fprintf(stderr, "inflate result: %d\n", err); in HWTEST_F()
357 * @tc.name : Test inflate with large buffers
383 err = inflate(&d_stream, Z_NO_FLUSH); in HWTEST_F()
465 inflate(&d_stream, Z_NO_FLUSH); in HWTEST_F()
468 inflate(&d_stream, Z_FINISH); in HWTEST_F()
516 * @tc.name : Test inflate with a preset dictionary
541 err = inflate(&d_stream, Z_NO_FLUSH); in HWTEST_F()
558 fprintf(stderr, "bad inflate wit in HWTEST_F()
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dzlib.c53 ret = inflate(&zs, Z_NO_FLUSH); in gzip_decompress_to_file()
/kernel/linux/linux-5.10/lib/
H A Ddecompress.c13 #include <linux/decompress/inflate.h>
/kernel/linux/linux-6.6/tools/perf/util/
H A Dzlib.c53 ret = inflate(&zs, Z_NO_FLUSH); in gzip_decompress_to_file()
/kernel/linux/linux-6.6/lib/
H A Ddecompress.c13 #include <linux/decompress/inflate.h>
/third_party/ffmpeg/libavfilter/cuda/
H A Dload_helper.c64 ret = inflate(&stream, Z_FINISH); in ff_cuda_load_module()
66 av_log(avctx, AV_LOG_ERROR, "zlib inflate error(%d): %s\n", ret, stream.msg); in ff_cuda_load_module()
/third_party/libwebsockets/lib/roles/http/compression/deflate/
H A Ddeflate.c74 n = inflate(ctx->u.deflate, Z_SYNC_FLUSH); in lcs_process_deflate()
81 lwsl_err("zlib error inflate %d\n", n); in lcs_process_deflate()
/third_party/node/deps/v8/third_party/zlib/
H A Duncompr.c70 err = inflate(&stream, Z_NO_FLUSH);
/third_party/node/deps/zlib/
H A Duncompr.c66 err = inflate(&stream, Z_NO_FLUSH); in uncompress2()
/third_party/mesa3d/src/util/
H A Dcompress.c133 /* allocate inflate state */ in util_compress_inflate()
146 ret = inflate(&strm, Z_NO_FLUSH); in util_compress_inflate()

Completed in 9 milliseconds

1234567