Searched refs:old_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)
1177 /* If the old_stats has not been initialized, just copy in the new stats */
1178 if (old_stats->major_version == 0) {
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
1158 _profile_merge_stats(struct profile_stats *old_stats, const struct profile_stats *new_stats) argument
[all...]

Completed in 70 milliseconds