Lines Matching refs:opaque
222 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
224 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc()
246 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
264 ptr = opaque; /* just to make some compilers happy */ in zcfree()
281 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
283 if (opaque) opaque = 0; /* to make compiler happy */ in zcalloc()
287 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
289 if (opaque) opaque = 0; /* to make compiler happy */ in zcfree()
306 voidpf zcalloc (opaque, items, size) in zcalloc() argument
307 voidpf opaque; in zcalloc()
311 if (opaque) items += size - size; /* make compiler happy */
316 void zcfree (opaque, ptr) in zcfree() argument
317 voidpf opaque; in zcfree()
321 if (opaque) return; /* make compiler happy */