Home | History | Annotate | Download | only in memcheck

Lines Matching refs:mc1

144          MC_Chunk* mc1;
148 mc1 = freed_list_start[i];
149 VG_(free_queue_volume) -= (Long)mc1->szB;
159 freed_list_start[i] = mc1->next;
161 mc1->next = NULL; /* just paranoia */
164 if (MC_AllocCustom != mc1->allockind)
165 VG_(cli_free) ( (void*)(mc1->data) );
166 delete_MC_Chunk ( mc1 );
672 MC_Chunk* mc1 = *(MC_Chunk**)n1;
674 if (mc1->data < mc2->data) return -1;
675 if (mc1->data > mc2->data) return 1;