HomeSort by relevance Sort by last modified time
    Searched refs:zalloc (Results 76 - 100 of 115) sorted by null

1 2 34 5

  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
zlib.h 94 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
96 voidpf opaque; /* private data object passed to zalloc and zfree */
131 has dropped to zero. The application must initialize zalloc, zfree and
136 parameter for calls of zalloc and zfree. This can be useful for custom
140 zalloc must return Z_NULL if there is not enough memory for the object.
141 If zlib is used in a multi-threaded application, zalloc and zfree must be
144 On 16-bit systems, the functions zalloc and zfree must be able to allocate
147 pointers returned by zalloc for objects of exactly 65536 bytes *must*
205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
223 zalloc, zfree and opaque must be initialized before by the caller
    [all...]
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
zlib.h 94 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
96 voidpf opaque; /* private data object passed to zalloc and zfree */
131 has dropped to zero. The application must initialize zalloc, zfree and
136 parameter for calls of zalloc and zfree. This can be useful for custom
140 zalloc must return Z_NULL if there is not enough memory for the object.
141 If zlib is used in a multi-threaded application, zalloc and zfree must be
144 On 16-bit systems, the functions zalloc and zfree must be able to allocate
147 pointers returned by zalloc for objects of exactly 65536 bytes *must*
205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
223 zalloc, zfree and opaque must be initialized before by the caller
    [all...]
  /bootable/recovery/applypatch/
imgdiff.c 309 strm.zalloc = Z_NULL;
434 strm.zalloc = Z_NULL;
531 strm.zalloc = Z_NULL;
  /external/linux-tools-perf/
builtin-sched.c 236 struct sched_atom *event = zalloc(sizeof(*event));
304 wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
334 task = zalloc(sizeof(*task));
972 struct work_atoms *atoms = zalloc(sizeof(*atoms));
1004 struct work_atom *atom = zalloc(sizeof(*atom));
    [all...]
  /external/libpng/
pngread.c 160 png_ptr->zstream.zalloc = png_zalloc;
326 png_ptr->zstream.zalloc = png_zalloc;
329 png_ptr->zstream.zalloc = png_zalloc;
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 157 if (strm->zalloc == (alloc_func)0) {
158 strm->zalloc = zcalloc;
163 ZALLOC(strm, 1, sizeof(struct inflate_state));
335 ZALLOC(strm, 1U << state->wbits,
    [all...]
deflate.c 243 if (strm->zalloc == (alloc_func)0) {
244 strm->zalloc = zcalloc;
271 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
287 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
288 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
289 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
293 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
363 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
914 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
920 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte))
    [all...]
  /external/zlib/
inflate.c 193 if (strm->zalloc == (alloc_func)0) {
197 strm->zalloc = zcalloc;
208 ZALLOC(strm, 1, sizeof(struct inflate_state));
390 ZALLOC(strm, 1U << state->wbits,
    [all...]
gzread.c 101 state->strm.zalloc = Z_NULL;
zlib.h 97 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
99 voidpf opaque; /* private data object passed to zalloc and zfree */
134 to zero. The application must initialize zalloc, zfree and opaque before
139 parameter for calls of zalloc and zfree. This can be useful for custom
143 zalloc must return Z_NULL if there is not enough memory for the object.
144 If zlib is used in a multi-threaded application, zalloc and zfree must be
147 On 16-bit systems, the functions zalloc and zfree must be able to allocate
150 returned by zalloc for objects of exactly 65536 bytes *must* have their
208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
227 zalloc, zfree and opaque must be initialized before by the caller. I
    [all...]
deflate.c 240 if (strm->zalloc == (alloc_func)0) {
244 strm->zalloc = zcalloc;
277 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
398 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
    [all...]
gzwrite.c 39 strm->zalloc = Z_NULL;
  /dalvik/libdex/
ZipArchive.cpp 603 zstream.zalloc = Z_NULL;
  /external/zlib/examples/
gun.c 639 strm.zalloc = Z_NULL;
gzappend.c 281 strm->zalloc = Z_NULL;
gzlog.c 620 strm.zalloc = Z_NULL;
    [all...]
  /external/zlib/test/
minigzip.c 204 gz->strm.zalloc = myalloc;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
zlib.h 97 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
99 voidpf opaque; /* private data object passed to zalloc and zfree */
134 has dropped to zero. The application must initialize zalloc, zfree and
139 parameter for calls of zalloc and zfree. This can be useful for custom
143 zalloc must return Z_NULL if there is not enough memory for the object.
144 If zlib is used in a multi-threaded application, zalloc and zfree must be
147 On 16-bit systems, the functions zalloc and zfree must be able to allocate
150 pointers returned by zalloc for objects of exactly 65536 bytes *must*
208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
226 zalloc, zfree and opaque must be initialized before by the caller
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
zlib.h 97 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
99 voidpf opaque; /* private data object passed to zalloc and zfree */
134 has dropped to zero. The application must initialize zalloc, zfree and
139 parameter for calls of zalloc and zfree. This can be useful for custom
143 zalloc must return Z_NULL if there is not enough memory for the object.
144 If zlib is used in a multi-threaded application, zalloc and zfree must be
147 On 16-bit systems, the functions zalloc and zfree must be able to allocate
150 pointers returned by zalloc for objects of exactly 65536 bytes *must*
208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
226 zalloc, zfree and opaque must be initialized before by the caller
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
zlib.h 97 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
99 voidpf opaque; /* private data object passed to zalloc and zfree */
134 has dropped to zero. The application must initialize zalloc, zfree and
139 parameter for calls of zalloc and zfree. This can be useful for custom
143 zalloc must return Z_NULL if there is not enough memory for the object.
144 If zlib is used in a multi-threaded application, zalloc and zfree must be
147 On 16-bit systems, the functions zalloc and zfree must be able to allocate
150 pointers returned by zalloc for objects of exactly 65536 bytes *must*
208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
226 zalloc, zfree and opaque must be initialized before by the caller
    [all...]
  /external/linux-tools-perf/util/
event.c 230 union perf_event *event = zalloc((sizeof(event->mmap) +
406 union perf_event *event = zalloc((sizeof(event->mmap) +
annotate.c 32 notes->src = zalloc(sizeof(*notes->src) + nevents * sizeof_sym_hist);
session.c 141 struct perf_session *self = zalloc(sizeof(*self) + len);
1152 ref = zalloc(sizeof(struct ref_reloc_sym));
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngread.c 142 png_ptr->zstream.zalloc = png_zalloc;
296 png_ptr->zstream.zalloc = png_zalloc;
    [all...]
  /external/zlib/contrib/minizip/
unzip.c     [all...]

Completed in 1234 milliseconds

1 2 34 5