Searched refs:zfree (Results 101 - 125 of 216) sorted by relevance

123456789

/macosx-10.9.5/zsh-60/zsh/Src/
H A Dpattern.c2127 zfree(tryalloced, unmetalen + unmetalenp);
2164 zfree(tryalloced, unmetalen + unmetalenp);
2315 zfree(tryalloced, unmetalen + unmetalenp);
2835 zfree((char *)syncstrp->p,
2894 zfree((char *)ptrp->p,
3754 zfree(prog, prog->size);
H A Djobs.c1127 zfree(file_list, sizeof(struct linklist));
1141 zfree(pn, sizeof(struct process));
1148 zfree(pn, sizeof(struct process));
1152 zfree(jn->ty, sizeof(struct ttyinfo));
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dmcache.c433 zfree(mcache_zone, buf);
878 zfree(mcache_zone, *pbuf);
1001 zfree(cp->mc_slab_zone, *pbuf);
H A Dsys_pipe.c1348 zfree(pipe_zone, cpipe);
1652 zfree(pipe_zone, pgp->pg_pipe);
1653 zfree(pipe_garbage_zone, pgp);
/macosx-10.9.5/xnu-2422.115.4/bsd/net/classq/
H A Dclassq_sfb.c481 zfree(sfb_bins_zone, sp->sfb_bins);
485 zfree(sfb_fcl_zone, sp->sfb_fc_lists);
488 zfree(sfb_zone, sp);
H A Dclassq_red.c323 zfree(red_zone, rp);
H A Dclassq_rio.c325 zfree(rio_zone, rp);
/macosx-10.9.5/xnu-2422.115.4/bsd/net/pktsched/
H A Dpktsched_fairq.c250 zfree(fairq_zone, fif);
577 zfree(fairq_cl_zone, cl);
653 zfree(fairq_cl_zone, cl);
H A Dpktsched_qfq.c239 zfree(qfq_zone, qif);
290 zfree(qfq_zone, qif);
511 zfree(qfq_cl_zone, cl);
548 zfree(qfq_cl_zone, cl);
710 zfree(qfq_cl_zone, cl);
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet6/
H A Dnd6_prproxy.c271 zfree(ndprl_zone, ndprl);
1282 zfree(solsrc_zone, ssrc);
1476 zfree(soltgt_zone, soltgt);
/macosx-10.9.5/zsh-60/zsh/Src/Zle/
H A Dcomplete.c89 zfree(l, sizeof(struct cmlist));
111 zfree(m, sizeof(struct cmatcher));
127 zfree(p, sizeof(struct cpattern));
/macosx-10.9.5/sudo-72/src/zlib/
H A Dgzread.c102 state->strm.zfree = Z_NULL;
H A Dzlib.h98 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s
99 voidpf opaque; /* private data object passed to zalloc and zfree */
134 to zero. The application must initialize zalloc, zfree and opaque before
139 parameter for calls of zalloc and zfree. This can be useful for custom
144 If zlib is used in a multi-threaded application, zalloc and zfree must be
147 On 16-bit systems, the functions zalloc and zfree must be able to allocate
208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
227 zalloc, zfree and opaque must be initialized before by the caller. If
228 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
371 next_in, avail_in, zalloc, zfree an
[all...]
H A Ddeflate.c248 if (strm->zfree == (free_func)0)
252 strm->zfree = zcfree;
398 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
403 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dvfs_fsevents.c467 zfree(event_zone, kfse);
517 zfree(event_zone, junkptr);
874 zfree(event_zone, kfse->dest);
894 zfree(event_zone, kfse);
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dkalloc.c633 zfree(z, data);
H A Dthread.c511 zfree(thread_zone, thread);
719 zfree(thread_zone, new_thread);
735 zfree(thread_zone, new_thread);
776 zfree(thread_zone, new_thread);
H A Dthread_call.c764 zfree(thread_call_zone, call);
1143 zfree(thread_call_zone, call);
/macosx-10.9.5/xnu-2422.115.4/osfmk/pmc/
H A Dpmc.c337 zfree(perf_small_zone, pm);
518 zfree(perf_big_zone, pmc);
632 zfree(perf_small_zone, config);
684 zfree(perf_small_zone, resv);
/macosx-10.9.5/zlib-53/zlib/examples/
H A Dgun.c640 strm.zfree = Z_NULL;
H A Dgzappend.c282 strm->zfree = Z_NULL;
/macosx-10.9.5/zlib-53/zlib/
H A Dgzread.c128 state->strm.zfree = Z_NULL;
H A Dzlib.h103 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s
104 voidpf opaque; /* private data object passed to zalloc and zfree */
139 to zero. The application must initialize zalloc, zfree and opaque before
144 parameter for calls of zalloc and zfree. This can be useful for custom
149 If zlib is used in a multi-threaded application, zalloc and zfree must be
152 On 16-bit systems, the functions zalloc and zfree must be able to allocate
213 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
232 zalloc, zfree and opaque must be initialized before by the caller. If
233 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default
375 next_in, avail_in, zalloc, zfree an
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dratz.c513 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s
514 voidpf opaque; /* private data object passed to zalloc and zfree */
568 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
801 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
2382 if (strm->zfree == (free_func)0) strm->zfree = zcfree;
3373 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
3550 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
3689 s->stream.zfree = (free_func)0;
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Ddeflate.c249 if (strm->zfree == (free_func)0) strm->zfree = zcfree;
365 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
370 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */

Completed in 224 milliseconds

123456789