Lines Matching defs:buf
23 #define SET_CHARTAB(buf, c) (buf)->b_chartab[(unsigned)(c) >> 3] |= (1 << ((c) & 0x7)) argument
24 #define RESET_CHARTAB(buf, c) (buf)->b_chartab[(unsigned)(c) >> 3] &= ~(1 << ((c) & 0x7)) argument
25 #define GET_CHARTAB(buf, c) ((buf)->b_chartab[(unsigned)(c) >> 3] & (1 << ((c) & 0x7))) argument
74 buf_T *buf, in buf_init_chartab()
281 char_u *buf, in trans_characters()
391 char_u *buf, in str_foldcase()
509 transchar_buf(buf_T *buf, int c) in transchar_buf()
560 transchar_nonprint(buf_T *buf, char_u *charbuf, int c) in transchar_nonprint()
625 transchar_hex(char_u *buf, int c) in transchar_hex()
753 # define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \ argument
761 # define RET_WIN_BUF_CHARTABSIZE(wp, buf, p, col) \ argument
857 vim_iswordc_buf(int c, buf_T *buf) in vim_iswordc_buf()
880 vim_iswordp_buf(char_u *p, buf_T *buf) in vim_iswordp_buf()
908 char_u buf[2]; in vim_isfilec_or_wc() local