Home | History | Annotate | Download | only in zlib

Lines Matching refs:opaque

216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)

218 voidpf buf = opaque; /* just to make some compilers happy */
240 void zcfree (voidpf opaque, voidpf ptr)
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void zcfree (voidpf opaque, voidpf ptr)
283 if (opaque) opaque = 0; /* to make compiler happy */
300 voidpf zcalloc (opaque, items, size)
301 voidpf opaque;
305 if (opaque) items += size - size; /* make compiler happy */
310 void zcfree (opaque, ptr)
311 voidpf opaque;
315 if (opaque) return; /* make compiler happy */