Lines Matching refs:opaque
220 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument
222 voidpf buf = opaque; /* just to make some compilers happy */ in zcalloc()
244 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
262 ptr = opaque; /* just to make some compilers happy */ in zcfree()
279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() argument
281 if (opaque) opaque = 0; /* to make compiler happy */ in zcalloc()
285 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr) in zcfree() argument
287 if (opaque) opaque = 0; /* to make compiler happy */ in zcfree()
304 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() argument
305 voidpf opaque; in zcalloc()
309 if (opaque) items += size - size; /* make compiler happy */
314 void ZLIB_INTERNAL zcfree (opaque, ptr) in zcfree() argument
315 voidpf opaque; in zcfree()
319 if (opaque) return; /* make compiler happy */