Lines Matching defs:u_int
111 u_int mouse; /* mouse cursor position */
112 u_int cursor; /* selection cursor position (if
114 u_int cpy_start; /* position of the copy start mark*/
115 u_int cpy_end; /* position of the copy end mark */
116 u_int orig_start; /* position of the original sel. start*/
117 u_int orig_end; /* position of the original sel. end */
119 u_int mouse_flags; /* flags, status of the mouse */
199 u_int sc_copybuffer_size;
672 u_int defaultscreens = ap->defaultscreens;
1145 *(u_int *)data = WSDISPLAYIO_MODE_DUMBFB;
1147 *(u_int *)data = WSDISPLAYIO_MODE_MAPPED;
1149 *(u_int *)data = WSDISPLAYIO_MODE_EMUL;
1194 *(u_int *)data = !sc->sc_burnman;
1198 if (*(u_int *)data != WSDISPLAYIO_VIDEO_OFF &&
1199 *(u_int *)data != WSDISPLAYIO_VIDEO_ON)
1204 *(u_int *)data, sc->sc_burnflags);
1205 sc->sc_burnman = *(u_int *)data == WSDISPLAYIO_VIDEO_OFF;
1577 wsdisplay_emulinput(void *v, const u_char *data, u_int count)
2140 void (*bell)(dev_t, u_int, u_int, u_int))
2348 wsdisplay_burn(void *v, u_int flags)
2539 motion_event(struct wsscreen *scr, u_int type, int value)
2602 ctrl_event(struct wsdisplay_softc *sc, u_int type, int value, struct proc *p)
2639 u_int old_mouse = scr->mouse;
2679 inverse_char(struct wsscreen *scr, u_int pos)
2715 inverse_region(struct wsscreen *scr, u_int start, u_int end)
2718 u_int current_pos;
2719 u_int abs_end;
2721 /* sanity check, useful because 'end' can be (u_int)-1 */
2735 u_int
2740 u_int current = scr->cpy_end;
2741 u_int mouse_col = scr->cpy_end % N_COLS(dconf);
2742 u_int limit = current + (N_COLS(dconf) - mouse_col - 1);
2743 u_int res = 0;
2767 u_int
2772 u_int current = scr->cpy_start;
2773 u_int mouse_col = scr->mouse % N_COLS(dconf);
2774 u_int limit = current - mouse_col;
2775 u_int res = 0;
2862 u_int
2863 skip_char_right(struct wsscreen *scr, u_int offset)
2867 u_int current = offset;
2868 u_int limit = current +
2870 u_int class;
2871 u_int res = 0;
2888 u_int
2889 skip_char_left(struct wsscreen *scr, u_int offset)
2893 u_int current = offset;
2894 u_int limit = current - (scr->mouse % N_COLS(dconf));
2895 u_int class;
2896 u_int res = 0;
2913 u_int
2914 class_cmp(struct wsscreen *scr, u_int first, u_int second)
2917 u_int first_class;
2918 u_int second_class;
2939 u_int right;
2974 u_int right;
2975 u_int left;
3014 u_int row = scr->mouse / N_COLS(dconf);
3071 u_int right;
3160 u_int old_cpy_end;
3161 u_int old_cpy_start;
3253 u_int old_row;
3254 u_int new_row;
3255 u_int old_cpy_start;
3256 u_int old_cpy_end;
3317 u_int start_dist;
3318 u_int end_dist;
3384 u_int current = 0;
3385 u_int blank = current;
3386 u_int buf_end = (N_COLS(dconf) + 1) * N_ROWS(dconf);
3387 u_int sel_cur;
3388 u_int sel_end;
3422 u_int len;
3462 u_int size = sc->sc_copybuffer_size;