Lines Matching refs:histogram_entry
63 struct histogram_entry struct
75 vec<histogram_entry *> histogram; argument
76 static object_allocator<histogram_entry> histogram_pool ("IPA histogram");
80 struct histogram_hash : nofree_ptr_hash <histogram_entry>
82 static inline hashval_t hash (const histogram_entry *);
83 static inline int equal (const histogram_entry *, const histogram_entry *);
87 histogram_hash::hash (const histogram_entry *val) in hash()
93 histogram_hash::equal (const histogram_entry *val, const histogram_entry *val2) in equal()
103 vec<histogram_entry *> &histogram, in account_time_size()
106 histogram_entry key = {count, 0, 0}; in account_time_size()
107 histogram_entry **val = hashtable->find_slot (&key, INSERT); in account_time_size()
122 const histogram_entry *h1 = *(const histogram_entry * const *)v1; in cmp_counts()
123 const histogram_entry *h2 = *(const histogram_entry * const *)v2; in cmp_counts()
134 dump_histogram (FILE *file, vec<histogram_entry *> histogram) in dump_histogram()