Lines Matching refs:bytes
3296 char_u bytes[sizeof(long_u)]; in get_long_from_buf() local
3301 len = get_bytes_from_buf(buf, bytes, (int)sizeof(long_u)); in get_long_from_buf()
3307 *val += (long_u)bytes[i] << shift; in get_long_from_buf()
3321 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes) in get_bytes_from_buf() argument
3347 bytes[i] = c; in get_bytes_from_buf()
5620 char_u bytes[6]; in check_termcode() local
5621 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4); in check_termcode()
5625 mouse_col = 128 * (bytes[0] - ' ' - 1) + bytes[1] - ' ' - 1; in check_termcode()
5626 mouse_row = 128 * (bytes[2] - ' ' - 1) + bytes[3] - ' ' - 1; in check_termcode()
5707 char_u bytes[6]; in check_termcode() local
5708 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1); in check_termcode()
5712 current_tab = (int)bytes[0]; in check_termcode()
5720 char_u bytes[6]; in check_termcode() local
5721 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2); in check_termcode()
5725 current_tab = (int)bytes[0]; in check_termcode()
5726 current_tabmenu = (int)bytes[1]; in check_termcode()
5734 char_u bytes[6]; in check_termcode() local
5743 num_bytes = get_bytes_from_buf(tp + j, bytes, 1); in check_termcode()
5747 current_scrollbar = (int)bytes[0]; in check_termcode()
5748 else if (current_scrollbar != (int)bytes[0]) in check_termcode()