Lines Matching refs:bytes
2126 char_u bytes[6]; in check_termcode_mouse() local
2182 num_bytes = get_bytes_from_buf(tp + *slen, bytes, 5); in check_termcode_mouse()
2185 mouse_code = bytes[0]; in check_termcode_mouse()
2186 mouse_col = 128 * (bytes[1] - ' ' - 1) in check_termcode_mouse()
2187 + bytes[2] - ' ' - 1; in check_termcode_mouse()
2188 mouse_row = 128 * (bytes[3] - ' ' - 1) in check_termcode_mouse()
2189 + bytes[4] - ' ' - 1; in check_termcode_mouse()
2194 num_bytes = get_bytes_from_buf(tp + *slen, bytes, 3); in check_termcode_mouse()
2197 mouse_code = bytes[0]; in check_termcode_mouse()
2198 mouse_col = bytes[1] - ' ' - 1; in check_termcode_mouse()
2199 mouse_row = bytes[2] - ' ' - 1; in check_termcode_mouse()