Lines Matching refs:num_bytes
3321 get_bytes_from_buf(char_u *buf, char_u *bytes, int num_bytes) in get_bytes_from_buf() argument
3327 for (i = 0; i < num_bytes; i++) in get_bytes_from_buf()
5621 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 4); in check_termcode() local
5623 if (num_bytes == -1) // not enough coordinates in check_termcode()
5627 slen += num_bytes; in check_termcode()
5687 int num_bytes = get_long_from_buf(tp + slen, &val); in check_termcode() local
5689 if (num_bytes == -1) in check_termcode()
5692 slen += num_bytes; in check_termcode()
5708 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 1); in check_termcode() local
5710 if (num_bytes == -1) in check_termcode()
5715 slen += num_bytes; in check_termcode()
5721 int num_bytes = get_bytes_from_buf(tp + slen, bytes, 2); in check_termcode() local
5723 if (num_bytes == -1) in check_termcode()
5727 slen += num_bytes; in check_termcode()
5735 int num_bytes; in check_termcode() local
5743 num_bytes = get_bytes_from_buf(tp + j, bytes, 1); in check_termcode()
5744 if (num_bytes == -1) in check_termcode()
5750 j += num_bytes; in check_termcode()
5751 num_bytes = get_long_from_buf(tp + j, &val); in check_termcode()
5752 if (num_bytes == -1) in check_termcode()
5755 j += num_bytes; in check_termcode()
5764 int num_bytes; in check_termcode() local
5772 num_bytes = get_long_from_buf(tp + j, &val); in check_termcode()
5773 if (num_bytes == -1) in check_termcode()
5776 j += num_bytes; in check_termcode()