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

1 2 3 4 5 6

  /external/zlib/src/test/
example.c 73 static free_func zfree = myfree; variable
78 static free_func zfree = (free_func)0; variable
209 c_stream.zfree = zfree;
248 d_stream.zfree = zfree;
287 c_stream.zfree = zfree;
344 d_stream.zfree = zfree;
    [all...]
  /external/opencv3/3rdparty/zlib/
uncompr.c 43 stream.zfree = (free_func)0;
compress.c 43 stream.zfree = (free_func)0;
  /external/pdfium/third_party/zlib_v128/
uncompr.c 43 stream.zfree = (free_func)0;
compress.c 43 stream.zfree = (free_func)0;
  /external/zlib/src/
uncompr.c 43 stream.zfree = (free_func)0;
compress.c 43 stream.zfree = (free_func)0;
  /toolchain/binutils/binutils-2.25/gas/
compress-debug.c 41 strm.zfree = NULL;
  /external/zlib/src/examples/
fitblk.c 149 def.zfree = Z_NULL;
181 inf.zfree = Z_NULL;
zpipe.c 46 strm.zfree = Z_NULL;
102 strm.zfree = Z_NULL;
  /external/freetype/src/gzip/
zlib.h 81 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s
82 voidpf opaque; /* private data object passed to zalloc and zfree */
94 has dropped to zero. The application must initialize zalloc, zfree and
99 parameter for calls of zalloc and zfree. This can be useful for custom
104 If zlib is used in a multi-threaded application, zalloc and zfree must be
107 On 16-bit systems, the functions zalloc and zfree must be able to allocate
164 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
179 zalloc, zfree and opaque must be initialized before by the caller.
180 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
292 next_in, avail_in, zalloc, zfree and opaque must be initialized before b
    [all...]
inflate.c 71 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
75 ZFREE(z, z->state);
101 if (z->zfree == Z_NULL) z->zfree = zcfree;
ftgzip.c 62 #define MY_ZCALLOC /* prevent all zcalloc() & zfree() in zutil.c */
301 zstream->zfree = (free_func) ft_gzip_free;
326 zstream->zfree = NULL;
738 stream.zfree = (free_func) ft_gzip_free;
zutil.h 212 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
213 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
zlib.h 81 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s
82 voidpf opaque; /* private data object passed to zalloc and zfree */
94 has dropped to zero. The application must initialize zalloc, zfree and
99 parameter for calls of zalloc and zfree. This can be useful for custom
104 If zlib is used in a multi-threaded application, zalloc and zfree must be
107 On 16-bit systems, the functions zalloc and zfree must be able to allocate
164 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
179 zalloc, zfree and opaque must be initialized before by the caller.
180 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
292 next_in, avail_in, zalloc, zfree and opaque must be initialized before b
    [all...]
inflate.c 71 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
75 ZFREE(z, z->state);
101 if (z->zfree == Z_NULL) z->zfree = zcfree;
ftgzip.c 62 #define MY_ZCALLOC /* prevent all zcalloc() & zfree() in zutils.c */
301 zstream->zfree = (free_func) ft_gzip_free;
326 zstream->zfree = NULL;
738 stream.zfree = (free_func) ft_gzip_free;
  /libcore/luni/src/main/native/
ZipUtilities.cpp 39 stream.zfree = Z_NULL;
  /external/skia/src/pdf/
SkDeflate.cpp 79 fImpl->fZStream.zfree = &skia_free_func;
  /external/zlib/src/contrib/pascal/
example.pas 192 c_stream.zfree := NIL;
237 d_stream.zfree := NIL;
278 c_stream.zfree := NIL;
332 d_stream.zfree := NIL;
376 c_stream.zfree := NIL;
415 d_stream.zfree := NIL;
455 c_stream.zfree := NIL;
492 d_stream.zfree := NIL;
  /toolchain/binutils/binutils-2.25/gold/
compressed_output.cc 102 strm.zfree = NULL;
  /bootable/recovery/applypatch/
imgpatch.cpp 160 strm.zfree = Z_NULL;
218 strm.zfree = Z_NULL;
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 53 zcontext_.zfree = Z_NULL;
213 zcontext_.zfree = Z_NULL;
  /external/zlib/src/contrib/delphi/
ZLib.pas 36 zfree: TFree; // used to free the internal state
37 AppData: Pointer; // private data object passed to zalloc and zfree
294 strm.zfree := zlibFreeMem;
333 strm.zfree := zlibFreeMem;
373 strm.zfree := zlibFreeMem;
395 FZRec.zfree := zlibFreeMem;
  /external/zlib/src/contrib/infback9/
infback9.c 14 strm provides memory allocation functions in zalloc and zfree, or
37 if (strm->zfree == (free_func)0) strm->zfree = zcfree;
609 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
611 ZFREE(strm, strm->state);

Completed in 1870 milliseconds

1 2 3 4 5 6