Lines Matching refs:n_counts
216 Int n_counts; member
280 static Counts* new_Counts ( Int n_counts, /*COPIED*/ULong* counts ) in new_Counts() argument
287 assert(n_counts >= 0); in new_Counts()
288 cts->counts = malloc(n_counts * sizeof(ULong)); in new_Counts()
294 cts->n_counts = n_counts; in new_Counts()
295 for (i = 0; i < n_counts; i++) in new_Counts()
301 static Counts* new_Counts_Zeroed ( Int n_counts ) in new_Counts_Zeroed() argument
308 assert(n_counts >= 0); in new_Counts_Zeroed()
309 cts->counts = malloc(n_counts * sizeof(ULong)); in new_Counts_Zeroed()
315 cts->n_counts = n_counts; in new_Counts_Zeroed()
316 for (i = 0; i < n_counts; i++) in new_Counts_Zeroed()
338 return new_Counts( cts->n_counts, cts->counts ); in dopy_Counts()
401 for (i = 0; i < c->n_counts; i++) { in showCounts()
436 for (i = 0; i < cpf->summary->n_counts; i++) in show_CacheProfFile()
526 if (counts1->n_counts != counts2->n_counts) in addCounts()
528 for (i = 0; i < counts1->n_counts; i++) in addCounts()
567 if (newCounts->n_counts != cpf->n_events) in handle_counts()
743 if (summaryRead->n_counts != cpf->n_events) in parse_CacheProfFile()
745 for (i = 0; i < summaryRead->n_counts; i++) { in parse_CacheProfFile()