Lines Matching refs:off
1733 latin_off2cells(unsigned off UNUSED, unsigned max_off UNUSED) in latin_off2cells()
1739 dbcs_off2cells(unsigned off, unsigned max_off) in dbcs_off2cells() argument
1742 if (off >= max_off) in dbcs_off2cells()
1747 if (enc_dbcs == DBCS_JPNU && ScreenLines[off] == 0x8e) in dbcs_off2cells()
1749 return MB_BYTE2LEN(ScreenLines[off]); in dbcs_off2cells()
1753 utf_off2cells(unsigned off, unsigned max_off) in utf_off2cells() argument
1755 return (off + 1 < max_off && ScreenLines[off + 1] == 0) ? 2 : 1; in utf_off2cells()
2024 utfc_char2bytes(int off, char_u *buf) in utfc_char2bytes() argument
2029 len = utf_char2bytes(ScreenLinesUC[off], buf); in utfc_char2bytes()
2032 if (ScreenLinesC[i][off] == 0) in utfc_char2bytes()
2034 len += utf_char2bytes(ScreenLinesC[i][off], buf + len); in utfc_char2bytes()
4432 int off; in mb_fix_col() local
4436 off = LineOffset[row] + col; in mb_fix_col()
4439 && ScreenLines[off] != NUL in mb_fix_col()
4441 ScreenLines + off)) in mb_fix_col()
4442 || (enc_utf8 && ScreenLines[off] == 0 in mb_fix_col()
4443 && ScreenLinesUC[off] == 0))) in mb_fix_col()