Searched refs:ZFREE (Results 1 – 5 of 5) sorted by relevance
/titanic_44/usr/src/uts/common/zmod/ |
H A D | zutil.h | 271 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) macro 272 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
H A D | inflate.c | 185 ZFREE(strm, state); 1189 if (state->window != Z_NULL) ZFREE(strm, state->window); 1190 ZFREE(strm, strm->state); 1374 ZFREE(source, copy);
|
H A D | deflate.c | 889 ZFREE(strm, strm->state);
|
/titanic_44/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 270 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) macro 271 #define TRY_FREE(s, p) {if (p) ZFREE(s, p); } 1293 ZFREE(strm, s); 3657 ZFREE(z, z->state); 4304 ZFREE(z, s->sub.trees.blens); 4333 ZFREE(z, s); 4338 ZFREE(z, s->hufts); 4339 ZFREE(z, s); 4496 ZFREE(z, s->sub.trees.blens); 4538 ZFREE(z, s->sub.trees.blens); [all …]
|
/titanic_44/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 128 #define ZFREE(strm, addr, size) \ macro 130 #define TRY_FREE(s, p, n) {if (p) ZFREE(s, p, n);} 866 ZFREE(strm, state, sizeof(deflate_state)); 2795 ZFREE(z, z->state, sizeof(struct internal_state)); 3216 ZFREE(z, s->sub.trees.blens, s->sub.trees.nblens * sizeof(uInt)); 3245 ZFREE(z, s, sizeof(struct inflate_blocks_state)); 3471 ZFREE(z, s->sub.trees.blens, s->sub.trees.nblens * sizeof(uInt)); 3526 ZFREE(z, s->window, s->end - s->window); 3527 ZFREE(z, s, sizeof(struct inflate_blocks_state)); 4064 ZFREE(z, p, p->word.Nalloc * sizeof(inflate_huft)); [all …]
|