Lines Matching refs:opaque
218 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
220 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc()
242 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
260 ptr = opaque; /* just to make some compilers happy */ in zcfree()
277 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
279 if (opaque) opaque = 0; /* to make compiler happy */ in zcalloc()
283 void zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
285 if (opaque) opaque = 0; /* to make compiler happy */ in zcfree()
302 voidpf zcalloc (opaque, items, size) in zcalloc() argument
303 voidpf opaque; in zcalloc()
307 if (opaque) items += size - size; /* make compiler happy */
312 void zcfree (opaque, ptr) in zcfree() argument
313 voidpf opaque; in zcfree()
317 if (opaque) return; /* make compiler happy */