Home | History | Annotate | Download | only in lib

Lines Matching defs:reap

120       link->next=vb->reap;
122 vb->reap=link;
136 /* reap the chain, pull the ripcord */
138 /* reap the chain */
139 struct alloc_chain *reap=vb->reap;
140 while(reap){
141 struct alloc_chain *next=reap->next;
142 _ogg_free(reap->ptr);
143 memset(reap,0,sizeof(*reap));
144 _ogg_free(reap);
145 reap=next;
156 vb->reap=NULL;