HomeSort by relevance Sort by last modified time
    Searched refs:strm (Results 1 - 25 of 195) sorted by null

1 2 3 4 5 6 7 8

  /toolchain/binutils/binutils-2.27/gas/
compress-debug.c 32 static struct z_stream_s strm; local
34 strm.zalloc = NULL;
35 strm.zfree = NULL;
36 strm.opaque = NULL;
37 deflateInit (&strm, Z_DEFAULT_COMPRESSION);
38 return &strm;
45 compress_data (struct z_stream_s *strm, const char **next_in,
51 strm->next_in = (Bytef *) (*next_in);
52 strm->avail_in = *avail_in;
53 strm->next_out = (Bytef *) (*next_out)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inffast.h 11 void inflate_fast OF((z_streamp strm, unsigned start));
  /external/libmicrohttpd/src/microspdy/
compression.h 38 * @param strm Zlib stream on which we work
42 SPDYF_zlib_deflate_init(z_stream *strm);
49 * @param strm Zlib stream on which we work
52 SPDYF_zlib_deflate_end(z_stream *strm);
58 * @param strm Zlib stream on which we work
69 SPDYF_zlib_deflate(z_stream *strm,
81 * @param strm Zlib stream on which we work
85 SPDYF_zlib_inflate_init(z_stream *strm);
92 * @param strm Zlib stream on which we work
95 SPDYF_zlib_inflate_end(z_stream *strm);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /external/python/cpython2/Modules/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /external/python/cpython3/Modules/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
gzwrite.c 21 z_streamp strm = &(state->strm); local
41 strm->zalloc = Z_NULL;
42 strm->zfree = Z_NULL;
43 strm->opaque = Z_NULL;
44 ret = deflateInit2(strm, state->level, Z_DEFLATED,
52 strm->next_in = NULL;
60 strm->avail_out = state->size;
61 strm->next_out = state->out;
62 state->x.next = strm->next_out
79 z_streamp strm = &(state->strm); local
151 z_streamp strm = &(state->strm); local
311 z_streamp strm; local
385 z_streamp strm; local
475 z_streamp strm; local
591 z_streamp strm; local
    [all...]
  /external/syslinux/com32/lib/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /external/zlib/src/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
gzwrite.c 21 z_streamp strm = &(state->strm); local
41 strm->zalloc = Z_NULL;
42 strm->zfree = Z_NULL;
43 strm->opaque = Z_NULL;
44 ret = deflateInit2(strm, state->level, Z_DEFLATED,
52 strm->next_in = NULL;
60 strm->avail_out = state->size;
61 strm->next_out = state->out;
62 state->x.next = strm->next_out
79 z_streamp strm = &(state->strm); local
151 z_streamp strm = &(state->strm); local
311 z_streamp strm; local
385 z_streamp strm; local
475 z_streamp strm; local
591 z_streamp strm; local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
inffast.h 11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
  /external/squashfs-tools/squashfs-tools/
lzma_xz_wrapper.c 43 lzma_stream strm = LZMA_STREAM_INIT; local
49 res = lzma_alone_encoder(&strm, &opt);
51 lzma_end(&strm);
55 strm.next_out = dest;
56 strm.avail_out = block_size;
57 strm.next_in = src;
58 strm.avail_in = size;
60 res = lzma_code(&strm, LZMA_FINISH);
61 lzma_end(&strm);
80 return (int) strm.total_out
102 lzma_stream strm = LZMA_STREAM_INIT; local
    [all...]
  /external/zlib/src/examples/
zpipe.c 40 z_stream strm; local
45 strm.zalloc = Z_NULL;
46 strm.zfree = Z_NULL;
47 strm.opaque = Z_NULL;
48 ret = deflateInit(&strm, level);
54 strm.avail_in = fread(in, 1, CHUNK, source);
56 (void)deflateEnd(&strm);
60 strm.next_in = in;
65 strm.avail_out = CHUNK;
66 strm.next_out = out
96 z_stream strm; local
    [all...]
zran.c 150 z_stream strm; local
155 strm.zalloc = Z_NULL;
156 strm.zfree = Z_NULL;
157 strm.opaque = Z_NULL;
158 strm.avail_in = 0;
159 strm.next_in = Z_NULL;
160 ret = inflateInit2(&strm, 47); /* automatic zlib or gzip decoding */
169 strm.avail_out = 0;
172 strm.avail_in = fread(input, 1, CHUNK, in);
177 if (strm.avail_in == 0)
253 z_stream strm; local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/examples/
zpipe.c 40 z_stream strm; local
45 strm.zalloc = Z_NULL;
46 strm.zfree = Z_NULL;
47 strm.opaque = Z_NULL;
48 ret = deflateInit(&strm, level);
54 strm.avail_in = fread(in, 1, CHUNK, source);
56 (void)deflateEnd(&strm);
60 strm.next_in = in;
65 strm.avail_out = CHUNK;
66 strm.next_out = out
96 z_stream strm; local
    [all...]
zran.c 150 z_stream strm; local
155 strm.zalloc = Z_NULL;
156 strm.zfree = Z_NULL;
157 strm.opaque = Z_NULL;
158 strm.avail_in = 0;
159 strm.next_in = Z_NULL;
160 ret = inflateInit2(&strm, 47); /* automatic zlib or gzip decoding */
169 strm.avail_out = 0;
172 strm.avail_in = fread(input, 1, CHUNK, in);
177 if (strm.avail_in == 0)
253 z_stream strm; local
    [all...]
  /external/zlib/src/test/
infcover.c 32 z_stream strm;
33 mem_setup(&strm) initializes the memory tracking and sets the
34 zalloc, zfree, and opaque members of strm to use
35 memory tracking for all zlib operations on strm
36 mem_limit(&strm, limit) sets a limit on the total bytes requested -- a
41 mem_used(&strm, "msg") prints to stderr "msg" and the total bytes used
42 mem_high(&strm, "msg") prints to stderr "msg" and the high water mark
43 mem_done(&strm, "msg") ends memory tracking, releases all allocations
50 strm members to Z_NULL to use the default memory
52 using strm
290 z_stream strm, copy; local
353 z_stream strm; local
391 z_stream strm, copy; local
473 z_stream strm; local
513 z_stream strm; local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/test/
infcover.c 32 z_stream strm;
33 mem_setup(&strm) initializes the memory tracking and sets the
34 zalloc, zfree, and opaque members of strm to use
35 memory tracking for all zlib operations on strm
36 mem_limit(&strm, limit) sets a limit on the total bytes requested -- a
41 mem_used(&strm, "msg") prints to stderr "msg" and the total bytes used
42 mem_high(&strm, "msg") prints to stderr "msg" and the high water mark
43 mem_done(&strm, "msg") ends memory tracking, releases all allocations
50 strm members to Z_NULL to use the default memory
52 using strm
290 z_stream strm, copy; local
353 z_stream strm; local
391 z_stream strm, copy; local
473 z_stream strm; local
513 z_stream strm; local
    [all...]
  /external/zlib/src/contrib/infback9/
infback9.h 23 ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
26 ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
27 ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
31 #define inflateBack9Init(strm, window) \
32 inflateBack9Init_((strm), (window), \
  /toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
infback9.h 23 ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
26 ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
27 ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
31 #define inflateBack9Init(strm, window) \
32 inflateBack9Init_((strm), (window), \
  /external/freetype/src/gzip/
zlib.h 176 ZEXTERN(int) deflateInit OF((z_streamp strm, int level));
258 deflate() sets strm->adler to the adler32 checksum of all input read
289 ZEXTERN(int) inflateInit OF((z_streamp strm));
309 ZEXTERN(int) inflate OF((z_streamp strm, int flush));
356 below), inflate sets strm-adler to the adler32 checksum of the
358 it sets strm->adler to the adler32 checksum of all output produced
378 ZEXTERN(int) inflateEnd OF((z_streamp strm));
396 ZEXTERN(int) deflateInit2 OF((z_streamp strm,
459 Upon return of this function, strm->adler is set to the Adler32 value
509 be compressed and flushed. In particular, strm->avail_out must be non-zero
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoSdCardWritePermissionTest.java 40 FileOutputStream strm = new FileOutputStream(fl); local
41 strm.write("Oops!".getBytes());
42 strm.flush();
43 strm.close();
  /external/bzip2/
bzlib.c 149 ( bz_stream* strm,
159 if (strm == NULL ||
165 if (strm->bzalloc == NULL) strm->bzalloc = default_bzalloc;
166 if (strm->bzfree == NULL) strm->bzfree = default_bzfree;
170 s->strm = strm;
203 strm->state = s;
204 strm->total_in_lo32 = 0
898 bz_stream strm; member in struct:__anon14446
1256 bz_stream strm; local
1307 bz_stream strm; local
    [all...]
  /external/libxml2/
xzlib.c 75 lzma_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon26852
132 state->strm.avail_in = 0; /* no input data yet */
257 lzma_stream *strm = &(state->strm); local
263 unsigned tmp = strm->avail_in;
266 strm->avail_in = tmp;
269 strm->avail_in = tmp;
270 strm->next_in = state->in;
280 state->strm.avail_in = state->zstrm.avail_in;
281 state->strm.next_in = state->zstrm.next_in
292 lzma_stream *strm = &(state->strm); local
300 lzma_stream *strm = &(state->strm); local
370 z_streamp strm = &(state->zstrm); local
387 lzma_stream *strm = &(state->strm); local
535 lzma_stream *strm = &(state->strm); local
636 lzma_stream *strm = &(state->strm); local
693 lzma_stream *strm; local
    [all...]

Completed in 989 milliseconds

1 2 3 4 5 6 7 8