Lines Matching refs:bytes
1424 screen_getbytes(int row, int col, char_u *bytes, int *attrp) in screen_getbytes() argument
1433 bytes[0] = ScreenLines[off]; in screen_getbytes()
1434 bytes[1] = NUL; in screen_getbytes()
1437 bytes[utfc_char2bytes(off, bytes)] = NUL; in screen_getbytes()
1440 bytes[0] = ScreenLines[off]; in screen_getbytes()
1441 bytes[1] = ScreenLines2[off]; in screen_getbytes()
1442 bytes[2] = NUL; in screen_getbytes()
1444 else if (enc_dbcs && MB_BYTE2LEN(bytes[0]) > 1) in screen_getbytes()
1446 bytes[1] = ScreenLines[off + 1]; in screen_getbytes()
1447 bytes[2] = NUL; in screen_getbytes()
4791 int bytes; in get_encoded_char_adv() local
4794 for (bytes = s[1] == 'x' ? 1 : s[1] == 'u' ? 2 : 4; bytes > 0; --bytes) in get_encoded_char_adv()