HomeSort by: relevance | last modified time | path
    Searched refs:zalloc (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/common/dist/zlib/test/
example.c 49 static alloc_func zalloc = myalloc; variable in typeref:typename:alloc_func
54 static alloc_func zalloc = (alloc_func)0; variable in typeref:typename:alloc_func
171 c_stream.zalloc = zalloc;
208 d_stream.zalloc = zalloc;
245 c_stream.zalloc = zalloc;
300 d_stream.zalloc = zalloc;
    [all...]
infcover.c 34 zalloc, zfree, and opaque members of strm to use
171 strm->zalloc = mem_alloc;
232 strm->zalloc = Z_NULL;
  /src/sys/lib/libz/
Makefile 19 SRCS= ${LIBZSRCS} zalloc.c
  /src/common/dist/zlib/
compress.c 34 stream.zalloc = (alloc_func)0;
uncompr.c 49 stream.zalloc = (alloc_func)0;
zutil.h 259 #define ZALLOC(strm, items, size) \
260 (*((strm)->zalloc))((strm)->opaque, (items), (size))
infback.c 21 strm provides memory allocation functions in zalloc and zfree, or
39 if (strm->zalloc == (alloc_func)0) {
43 strm->zalloc = zcalloc;
53 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
  /src/common/dist/zlib/examples/
zpipe.c 45 strm.zalloc = Z_NULL;
101 strm.zalloc = Z_NULL;
fitblk.c 148 def.zalloc = Z_NULL;
180 inf.zalloc = Z_NULL;
gznorm.c 89 strm.zalloc = Z_NULL;
gzjoin.c 300 strm.zalloc = Z_NULL;
  /src/tests/crypto/opencrypto/
h_comp_zlib.c 74 z.zalloc = Z_NULL;
h_comp_zlib_rnd.c 78 z.zalloc = Z_NULL;
  /src/sys/net/
ppp-deflate.c 76 static void *zalloc(void *, u_int items, u_int size);
134 zalloc(void *notused, u_int items, u_int size) function in typeref:typename:void *
172 state->strm.zalloc = zalloc;
390 state->strm.zalloc = zalloc;
zlib.h 374 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
376 voidpf opaque; /* private data object passed to zalloc and zfree */
388 has dropped to zero. The application must initialize zalloc, zfree and
393 parameter for calls of zalloc and zfree. This can be useful for custom
397 zalloc must return Z_NULL if there is not enough memory for the object.
398 If zlib is used in a multi-threaded application, zalloc and zfree must be
401 On 16-bit systems, the functions zalloc and zfree must be able to allocate
404 pointers returned by zalloc for objects of exactly 65536 bytes *must*
459 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
477 zalloc, zfree and opaque must be initialized before by the caller
    [all...]
  /src/common/dist/zlib/contrib/pascal/
example.pas 191 c_stream.zalloc := NIL;
236 d_stream.zalloc := NIL;
277 c_stream.zalloc := NIL;
331 d_stream.zalloc := NIL;
375 c_stream.zalloc := NIL;
414 d_stream.zalloc := NIL;
454 c_stream.zalloc := NIL;
491 d_stream.zalloc := NIL;
zlibpas.pas 40 zalloc: alloc_func; (* used to allocate the internal state *)
42 opaque: Pointer; (* private data object passed to zalloc and zfree *)
  /src/common/dist/zlib/contrib/ada/
zlib-thin.adb 106 Strm.zalloc := Alloc;
zlib-thin.ads 107 -- for initializing zalloc, zfree, opaque
310 -- has dropped to zero. The application must initialize zalloc, zfree and
374 zalloc : alloc_func := null; -- used to allocate the internal state
377 -- zalloc and zfree
  /src/common/dist/zlib/contrib/delphi/
ZLib.pas 35 zalloc: TAlloc; // used to allocate the internal state
37 AppData: Pointer; // private data object passed to zalloc and zfree
293 strm.zalloc := zlibAllocMem;
332 strm.zalloc := zlibAllocMem;
372 strm.zalloc := zlibAllocMem;
394 FZRec.zalloc := zlibAllocMem;
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 44 uint zalloc; field in struct:DotZLib.ZStream
  /src/sys/kern/
kern_ctf.c 205 zs.zalloc = z_alloc;
  /src/sys/opencrypto/
deflate.c 95 zbuf.zalloc = ocf_zalloc;
242 zbuf.zalloc = ocf_zalloc;
  /src/common/dist/zlib/contrib/infback9/
infback9.c 14 strm provides memory allocation functions in zalloc and zfree, or
29 if (strm->zalloc == (alloc_func)0) {
30 strm->zalloc = zcalloc;
34 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
  /src/sys/netinet/
sctputil.h 103 zalloc(zone);

Completed in 26 milliseconds

1 2