Home | History | Annotate | Download | only in callgrind

Lines Matching defs:cc

46     CostChunk* cc  = (CostChunk*) CLG_MALLOC("cl.costs.gc.1",
49 cc->size = COSTCHUNK_SIZE;
50 cc->used = 0;
51 cc->next = 0;
54 cost_chunk_current->next = cc;
55 cost_chunk_current = cc;
57 if (!cost_chunk_base) cost_chunk_base = cc;
72 CostChunk* cc = cost_chunk_base, *cc_next;
73 while(cc) {
74 cc_next = cc->next;
75 VG_(free)(cc);
76 cc = cc_next;