Lines Matching refs:ci
351 static char_u *get_syn_pattern(char_u *arg, synpat_T *ci);
5650 get_syn_pattern(char_u *arg, synpat_T *ci) in get_syn_pattern() argument
5668 if ((ci->sp_pattern = vim_strnsave(arg + 1, end - arg - 1)) == NULL) in get_syn_pattern()
5674 ci->sp_prog = vim_regcomp(ci->sp_pattern, RE_MAGIC); in get_syn_pattern()
5677 if (ci->sp_prog == NULL) in get_syn_pattern()
5679 ci->sp_ic = curwin->w_s->b_syn_ic; in get_syn_pattern()
5681 syn_clear_time(&ci->sp_time); in get_syn_pattern()
5695 p = &(ci->sp_offsets[idx]); in get_syn_pattern()
5706 ci->sp_off_flags |= (1 << idx); in get_syn_pattern()
5713 if (!(ci->sp_off_flags & (1 << SPO_MS_OFF))) in get_syn_pattern()
5715 ci->sp_off_flags |= (1 << SPO_MS_OFF); in get_syn_pattern()
5716 ci->sp_offsets[SPO_MS_OFF] = *p; in get_syn_pattern()