Home
last modified time | relevance | path

Searched refs:n_counts (Results 1 – 1 of 1) sorted by relevance

/external/valgrind/cachegrind/
Dcg_merge.c216 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()
[all …]