Home | History | Annotate | Download | only in gzip

Lines Matching refs:opaque

83 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
85 voidpf buf = opaque; /* just to make some compilers happy */
107 void zcfree (voidpf opaque, voidpf ptr)
125 ptr = opaque; /* just to make some compilers happy */
142 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
144 if (opaque) opaque = 0; /* to make compiler happy */
148 void zcfree (voidpf opaque, voidpf ptr)
150 if (opaque) opaque = 0; /* to make compiler happy */
164 voidpf zcalloc (opaque, items, size)
165 voidpf opaque;
169 if (opaque) items += size - size; /* make compiler happy */
173 void zcfree (opaque, ptr)
174 voidpf opaque;
178 if (opaque) return; /* make compiler happy */