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 */
302 voidpf zcalloc (opaque, items, size)
303 voidpf opaque;
307 if (opaque) items += size - size; /* make compiler happy */
312 void zcfree (opaque, ptr)
313 voidpf opaque;
317 if (opaque) return; /* make compiler happy */