Lines Matching refs:top_idx
163 return browser->top_idx + row == browser->index; in ui_browser__is_current_entry()
229 browser->index = browser->top_idx = 0; in ui_browser__reset_index()
344 if (browser->top_idx < (u64)-offset) in ui_browser__update_nr_entries()
345 offset = -browser->top_idx; in ui_browser__update_nr_entries()
348 browser->top_idx += offset; in ui_browser__update_nr_entries()
352 browser->seek(browser, browser->top_idx, SEEK_SET); in ui_browser__update_nr_entries()
395 if (browser->index == browser->top_idx + browser->rows) { in ui_browser__run()
396 ++browser->top_idx; in ui_browser__run()
404 if (browser->index < browser->top_idx) { in ui_browser__run()
405 --browser->top_idx; in ui_browser__run()
411 if (browser->top_idx + browser->rows > browser->nr_entries - 1) in ui_browser__run()
418 browser->top_idx += offset; in ui_browser__run()
422 if (browser->top_idx == 0) in ui_browser__run()
425 if (browser->top_idx < browser->rows) in ui_browser__run()
426 offset = browser->top_idx; in ui_browser__run()
431 browser->top_idx -= offset; in ui_browser__run()
443 browser->top_idx = browser->index - offset; in ui_browser__run()
570 browser->top = browser->top + browser->top_idx + offset; in ui_browser__argv_seek()
582 unsigned int row = 0, idx = browser->top_idx; in ui_browser__argv_refresh()
629 if (start < browser->top_idx + browser->rows) { in __ui_browser__line_arrow_up()
630 row = start - browser->top_idx; in __ui_browser__line_arrow_up()
641 if (end > browser->top_idx) in __ui_browser__line_arrow_up()
642 end_row = end - browser->top_idx; in __ui_browser__line_arrow_up()
650 if (end >= browser->top_idx) { in __ui_browser__line_arrow_up()
669 if (start >= browser->top_idx) { in __ui_browser__line_arrow_down()
670 row = start - browser->top_idx; in __ui_browser__line_arrow_down()
681 if (end >= browser->top_idx + browser->rows) in __ui_browser__line_arrow_down()
684 end_row = end - browser->top_idx; in __ui_browser__line_arrow_down()
690 if (end < browser->top_idx + browser->rows) { in __ui_browser__line_arrow_down()