Lines Matching refs:histo
1152 histo_t *histo;
1187 histo = malloc(HISTOSIZE * sizeof (histo_t));
1189 histo[i].sum = 0.0;
1190 histo[i].count = 0;
1205 histo[j].sum += b->ba_data[i];
1206 histo[j].count++;
1216 if (histo[i].count > 0) {
1218 if (histo[i].count > maxcount)
1219 maxcount = histo[i].count;
1224 (void) printf("# %12lld %12.5f |", histo[i].count,
1227 print_bar(histo[i].count, maxcount);
1229 if (histo[i].count > 0)
1231 histo[i].sum / histo[i].count);