Home | History | Annotate | Download | only in Tremolo

Lines Matching defs:bytes

58   long bytes;
64 static void *_insert(void *ptr,long bytes,char *file,long line){
68 ((head *)ptr)->bytes=bytes-HEAD_ALIGN;
113 file_bytes[i]+=bytes-HEAD_ALIGN;
122 file_bytes[i]-(bytes-HEAD_ALIGN));
132 global_bytes+(bytes-HEAD_ALIGN));
137 global_bytes+=(bytes-HEAD_ALIGN);
152 long bytes =((head *)ptr)->bytes;
159 global_bytes-((head *)ptr)->bytes);
172 file_bytes[i]-bytes);
175 file_bytes[i]-=bytes;
180 global_bytes-=((head *)ptr)->bytes;
203 fprintf(stderr,"unfreed bytes from %s:%ld\n",
209 extern void *_VDBG_malloc(void *ptr,long bytes,char *file,long line){
210 bytes+=HEAD_ALIGN;
214 ptr=realloc(ptr,bytes);
216 ptr=malloc(bytes);
217 memset(ptr,0,bytes);
219 return _insert(ptr,bytes,file,line);