HomeSort by: relevance | last modified time | path
    Searched defs:ZALLOC (Results 1 - 15 of 15) sorted by relevancy

  /src/external/gpl3/gdb/dist/sim/common/
sim-utils.h 27 void *zalloc (unsigned long size);
29 #define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
30 #define NZALLOC(TYPE,N) (TYPE*)zalloc(sizeof (TYPE) * (N))
  /src/external/gpl3/gdb/dist/sim/ppc/
sim_callbacks.h 119 void *zalloc
122 #define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-utils.h 27 void *zalloc (unsigned long size);
29 #define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
30 #define NZALLOC(TYPE,N) (TYPE*)zalloc(sizeof (TYPE) * (N))
  /src/external/gpl3/gdb.old/dist/sim/ppc/
sim_callbacks.h 119 void *zalloc
122 #define ZALLOC(TYPE) (TYPE*)zalloc(sizeof (TYPE))
  /src/external/gpl3/gdb/dist/sim/igen/
misc.h 78 #define ZALLOC(TYPE) ((TYPE*) zalloc (sizeof(TYPE)))
79 #define NZALLOC(TYPE,N) ((TYPE*) zalloc (sizeof(TYPE) * (N)))
81 extern void *zalloc (long size);
  /src/external/gpl3/gdb.old/dist/sim/igen/
misc.h 78 #define ZALLOC(TYPE) ((TYPE*) zalloc (sizeof(TYPE)))
79 #define NZALLOC(TYPE,N) ((TYPE*) zalloc (sizeof(TYPE) * (N)))
81 extern void *zalloc (long size);
  /src/common/dist/zlib/
zutil.h 259 #define ZALLOC(strm, items, size) \
260 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /src/external/gpl3/binutils/dist/zlib/
zutil.h 245 #define ZALLOC(strm, items, size) \
246 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /src/external/gpl3/binutils.old/dist/zlib/
zutil.h 244 #define ZALLOC(strm, items, size) \
245 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /src/external/gpl3/gdb/dist/zlib/
zutil.h 244 #define ZALLOC(strm, items, size) \
245 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /src/external/gpl3/gdb.old/dist/zlib/
zutil.h 244 #define ZALLOC(strm, items, size) \
245 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /src/external/cddl/osnet/dist/uts/common/zmod/
zutil.h 271 #define ZALLOC(strm, items, size) \
272 (*((strm)->zalloc))((strm)->opaque, (items), (size))
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
zlib.c 102 #define ZALLOC(strm, items, size) \
103 (*((strm)->zalloc))((strm)->opaque, (items), (size))
316 if (strm->zalloc == (alloc_func)0) {
317 strm->zalloc = netpgpv_zcalloc;
322 ZALLOC(strm, 1, sizeof(struct inflate_state));
491 ZALLOC(strm, 1U << state->wbits,
2213 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
2219 ZALLOC(source, 1, sizeof(struct inflate_state));
2224 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
  /src/external/zlib/pigz/dist/
pigz.c 634 #define ZALLOC zlib_alloc
796 #define ZALLOC Z_NULL
1433 strm.zalloc = ZALLOC;
1971 strm->zalloc = ZALLOC;
2931 strm.zalloc = ZALLOC;
  /src/sys/net/
zlib.c 277 #define ZALLOC(strm, items, size) \
278 (*((strm)->zalloc))((strm)->opaque, (items), (size))
833 if (strm->zalloc == Z_NULL) {
834 strm->zalloc = zcalloc;
854 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
869 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
870 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
871 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
875 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
946 strm->zalloc == Z_NULL || strm->zfree == Z_NULL) return Z_STREAM_ERROR
    [all...]

Completed in 23 milliseconds