Searched refs:new_stats (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/osfmk/profiling/i386/
H A Dprofile-md.c1169 void _profile_merge_stats(struct profile_stats *old_stats, const struct profile_stats *new_stats)
1174 if (!old_stats || !new_stats)
1179 *old_stats = *new_stats;
1183 if (old_stats->prof_records < new_stats->prof_records)
1184 old_stats->prof_records = new_stats->prof_records;
1186 if (old_stats->gprof_records < new_stats->gprof_records)
1187 old_stats->gprof_records = new_stats->gprof_records;
1189 if (old_stats->hash_buckets < new_stats->hash_buckets)
1190 old_stats->hash_buckets = new_stats->hash_buckets;
1192 if (old_stats->bogus_count < new_stats
1158 _profile_merge_stats(struct profile_stats *old_stats, const struct profile_stats *new_stats) argument
[all...]

Completed in 21 milliseconds