Lines Matching full:top
116 pos = browser->top; in ui_browser__list_head_seek()
135 browser->top = pos; in ui_browser__list_head_seek()
148 nd = browser->top; in ui_browser__rb_tree_seek()
165 browser->top = nd; in ui_browser__rb_tree_seek()
173 if (browser->top == NULL) in ui_browser__rb_tree_refresh()
174 browser->top = rb_first(browser->entries); in ui_browser__rb_tree_refresh()
176 nd = browser->top; in ui_browser__rb_tree_refresh()
365 * that is why we do a SEEK_SET. Think about 'perf top' in the hists browser
382 browser->top = NULL; in ui_browser__update_nr_entries()
504 if (browser->top == NULL || browser->top == browser->entries) in ui_browser__list_head_refresh()
505 browser->top = ui_browser__list_head_filter_entries(browser, head->next); in ui_browser__list_head_refresh()
507 pos = browser->top; in ui_browser__list_head_refresh()
527 .name = "top",
612 browser->top = browser->entries; in ui_browser__argv_seek()
615 browser->top = (char **)browser->top + offset; in ui_browser__argv_seek()
618 browser->top = (char **)browser->entries + browser->nr_entries - 1 + offset; in ui_browser__argv_seek()
623 assert((char **)browser->top < (char **)browser->entries + browser->nr_entries); in ui_browser__argv_seek()
624 assert((char **)browser->top >= (char **)browser->entries); in ui_browser__argv_seek()
632 if (browser->top == NULL) in ui_browser__argv_refresh()
633 browser->top = browser->entries; in ui_browser__argv_refresh()
635 pos = (char **)browser->top; in ui_browser__argv_refresh()