Lines Matching defs:hist
526 /* Also check the value for map/hist insertion */
714 /* Print non-empty map & hist */
770 hist_print((struct hist *)map, bv_name(bv));
945 * Increment a bucket: { @h = hist(v); } or { @h = lhist(v, min, max, step); }
955 struct hist *hist;
965 debug("hist=%p '%s' value=%lu out of range\n", bv->bv_value,
969 debug("hist=%p '%s' increment bucket '%s'\n", bv->bv_value,
972 /* hist is NULL before first insert or after clear() */
973 hist = (struct hist *)bv->bv_value;
974 if (hist == NULL)
975 hist = hist_new(step);
977 hist_increment(hist, bucket);
979 debug("hist=%p '%s' increment bucket=%p '%s' bval=%p\n", hist,
982 bv->bv_value = (struct bt_arg *)hist;
1142 hist_print((struct hist *)map, bv_name(bv));
1321 /* Handle map/hist access after clear(). */