hex_cursor        111 src/viewer/actions_cmd.c                 want_search_start = view->hex_cursor;
hex_cursor        121 src/viewer/actions_cmd.c                 want_search_start = view->hex_cursor + 1;
hex_cursor        122 src/viewer/actions_cmd.c             else if (view->hex_cursor > 0)
hex_cursor        123 src/viewer/actions_cmd.c                 want_search_start = view->hex_cursor - 1;
hex_cursor        206 src/viewer/actions_cmd.c     while ((node != NULL) && (node->offset != view->hex_cursor))
hex_cursor        226 src/viewer/actions_cmd.c             mcview_get_byte (view, view->hex_cursor, &byte_val);
hex_cursor        250 src/viewer/actions_cmd.c         node->offset = view->hex_cursor;
hex_cursor        172 src/viewer/display.c             tty_printf ("0x%08" PRIxMAX, (uintmax_t) view->hex_cursor);
hex_cursor        194 src/viewer/display.c         mcview_display_percent (view, view->mode_flags.hex ? view->hex_cursor : view->dpy_end);
hex_cursor         88 src/viewer/hex.c     return (from == view->hex_cursor) ? MARK_CURSOR
hex_cursor        253 src/viewer/hex.c             if (from == view->hex_cursor && !view->hexview_in_text)
hex_cursor        361 src/viewer/hex.c             if (from == view->hex_cursor && view->hexview_in_text)
hex_cursor        133 src/viewer/internal.h     off_t hex_cursor;           /* Hexview cursor position in file */
hex_cursor        132 src/viewer/lib.c         view->hex_cursor = view->dpy_start;
hex_cursor        138 src/viewer/lib.c         view->dpy_start = mcview_bol (view, view->hex_cursor, 0);
hex_cursor        139 src/viewer/lib.c         view->hex_cursor = view->dpy_start;
hex_cursor        177 src/viewer/lib.c     view->hex_cursor = 0;
hex_cursor        210 src/viewer/lib.c                             view->mode_flags.hex ? view->hex_cursor : view->dpy_start,
hex_cursor        454 src/viewer/mcviewer.c             view->hex_cursor = new_offset;
hex_cursor         78 src/viewer/move.c         off_t cursor = view->hex_cursor;
hex_cursor        102 src/viewer/move.c         view->search_start = view->mode_flags.hex ? view->hex_cursor : view->dpy_start;
hex_cursor        124 src/viewer/move.c         if (view->hex_cursor < bytes)
hex_cursor        125 src/viewer/move.c             view->hex_cursor %= view->bytes_per_line;
hex_cursor        128 src/viewer/move.c             view->hex_cursor -= bytes;
hex_cursor        129 src/viewer/move.c             if (view->hex_cursor < view->dpy_start)
hex_cursor        158 src/viewer/move.c         for (i = 0; i < lines && view->hex_cursor < limit; i++)
hex_cursor        160 src/viewer/move.c             view->hex_cursor += view->bytes_per_line;
hex_cursor        181 src/viewer/move.c         off_t old_cursor = view->hex_cursor;
hex_cursor        186 src/viewer/move.c             if (view->hex_cursor > 0)
hex_cursor        187 src/viewer/move.c                 view->hex_cursor--;
hex_cursor        207 src/viewer/move.c         off_t old_cursor = view->hex_cursor;
hex_cursor        215 src/viewer/move.c             if (view->hex_cursor < last_byte)
hex_cursor        216 src/viewer/move.c                 view->hex_cursor++;
hex_cursor        236 src/viewer/move.c     view->hex_cursor = 0;
hex_cursor        257 src/viewer/move.c         view->hex_cursor = DOZ (filesize, 1);
hex_cursor        278 src/viewer/move.c         view->hex_cursor -= view->hex_cursor % view->bytes_per_line;
hex_cursor        298 src/viewer/move.c         bol = mcview_offset_rounddown (view->hex_cursor, view->bytes_per_line);
hex_cursor        301 src/viewer/move.c             view->hex_cursor = bol + view->bytes_per_line - 1;
hex_cursor        305 src/viewer/move.c             view->hex_cursor = DOZ (filesize, 1);
hex_cursor        319 src/viewer/move.c         view->hex_cursor = offset;
hex_cursor        397 src/viewer/move.c         view->hex_cursor = view->search_start;