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