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