Lines Matching refs:h
429 struct hist_entry *h = rb_entry(browser->b.top, in hist_browser__run() local
438 h->row_offset, h->nr_rows); in hist_browser__run()
894 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hist_browser__refresh() local
897 if (h->filtered) in hist_browser__refresh()
900 percent = hist_entry__get_percent_limit(h); in hist_browser__refresh()
904 row += hist_browser__show_entry(hb, h, row); in hist_browser__refresh()
916 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hists__filter_entries() local
917 float percent = hist_entry__get_percent_limit(h); in hists__filter_entries()
919 if (!h->filtered && percent >= min_pcnt) in hists__filter_entries()
932 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hists__filter_prev_entries() local
933 float percent = hist_entry__get_percent_limit(h); in hists__filter_prev_entries()
935 if (!h->filtered && percent >= min_pcnt) in hists__filter_prev_entries()
947 struct hist_entry *h; in ui_browser__hists_seek() local
980 h = rb_entry(browser->top, struct hist_entry, rb_node); in ui_browser__hists_seek()
981 h->row_offset = 0; in ui_browser__hists_seek()
999 h = rb_entry(nd, struct hist_entry, rb_node); in ui_browser__hists_seek()
1000 if (h->ms.unfolded) { in ui_browser__hists_seek()
1001 u16 remaining = h->nr_rows - h->row_offset; in ui_browser__hists_seek()
1004 h->row_offset = 0; in ui_browser__hists_seek()
1006 h->row_offset += offset; in ui_browser__hists_seek()
1020 h = rb_entry(nd, struct hist_entry, rb_node); in ui_browser__hists_seek()
1021 if (h->ms.unfolded) { in ui_browser__hists_seek()
1023 if (-offset > h->row_offset) { in ui_browser__hists_seek()
1024 offset += h->row_offset; in ui_browser__hists_seek()
1025 h->row_offset = 0; in ui_browser__hists_seek()
1027 h->row_offset += offset; in ui_browser__hists_seek()
1033 if (-offset > h->nr_rows) { in ui_browser__hists_seek()
1034 offset += h->nr_rows; in ui_browser__hists_seek()
1035 h->row_offset = 0; in ui_browser__hists_seek()
1037 h->row_offset = h->nr_rows + offset; in ui_browser__hists_seek()
1057 h = rb_entry(nd, struct hist_entry, rb_node); in ui_browser__hists_seek()
1058 if (h->ms.unfolded) in ui_browser__hists_seek()
1059 h->row_offset = h->nr_rows; in ui_browser__hists_seek()
1066 h = rb_entry(nd, struct hist_entry, rb_node); in ui_browser__hists_seek()
1067 h->row_offset = 0; in ui_browser__hists_seek()
1136 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); in hist_browser__fprintf() local
1138 printed += hist_browser__fprintf_entry(browser, h, fp); in hist_browser__fprintf()