Home | History | Annotate | Download | only in cachegrind

Lines Matching full:n_counts

211       Int n_counts;
271 static Counts* new_Counts ( Int n_counts, /*COPIED*/ULong* counts )
278 assert(n_counts >= 0);
279 cts->counts = malloc(n_counts * sizeof(ULong));
283 cts->n_counts = n_counts;
284 for (i = 0; i < n_counts; i++)
290 static Counts* new_Counts_Zeroed ( Int n_counts )
297 assert(n_counts >= 0);
298 cts->counts = malloc(n_counts * sizeof(ULong));
302 cts->n_counts = n_counts;
303 for (i = 0; i < n_counts; i++)
325 return new_Counts( cts->n_counts, cts->counts );
388 for (i = 0; i < c->n_counts; i++) {
423 for (i = 0; i < cpf->summary->n_counts; i++)
510 if (counts1->n_counts != counts2->n_counts)
512 for (i = 0; i < counts1->n_counts; i++)
551 if (newCounts->n_counts != cpf->n_events)
727 if (summaryRead->n_counts != cpf->n_events)
729 for (i = 0; i < summaryRead->n_counts; i++) {