Lines Matching refs:mc1
103 MC_Chunk* mc1; in add_to_freed_queue() local
108 mc1 = freed_list_start; in add_to_freed_queue()
109 VG_(free_queue_volume) -= (Long)mc1->szB; in add_to_freed_queue()
119 freed_list_start = mc1->next; in add_to_freed_queue()
121 mc1->next = NULL; /* just paranoia */ in add_to_freed_queue()
124 if (MC_AllocCustom != mc1->allockind) { in add_to_freed_queue()
125 VG_(cli_free) ( (void*)(mc1->data) ); in add_to_freed_queue()
127 VG_(free) ( mc1 ); in add_to_freed_queue()
573 MC_Chunk* mc1 = *(MC_Chunk**)n1; in mp_compar() local
575 if (mc1->data < mc2->data) return -1; in mp_compar()
576 if (mc1->data > mc2->data) return 1; in mp_compar()