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

/macosx-10.5.8/xnu-1228.15.4/osfmk/profiling/i386/
H A Dprofile-md.c1175 void _profile_merge_stats(struct profile_stats *old_stats, const struct profile_stats *new_stats)
1180 if (!old_stats || !new_stats)
1185 *old_stats = *new_stats;
1189 if (old_stats->prof_records < new_stats->prof_records)
1190 old_stats->prof_records = new_stats->prof_records;
1192 if (old_stats->gprof_records < new_stats->gprof_records)
1193 old_stats->gprof_records = new_stats->gprof_records;
1195 if (old_stats->hash_buckets < new_stats->hash_buckets)
1196 old_stats->hash_buckets = new_stats->hash_buckets;
1198 if (old_stats->bogus_count < new_stats
1164 _profile_merge_stats(struct profile_stats *old_stats, const struct profile_stats *new_stats) argument
[all...]

Completed in 22 milliseconds