Lines Matching refs:n1
3616 size_t n1, in utf_strnicmp() argument
3624 c1 = utf_safe_read_char_adv(&s1, &n1); in utf_strnicmp()
3657 n1 = utf_char2bytes(utf_fold(c1), buffer); in utf_strnicmp()
3666 while (n1 > 0 && n2 > 0 && *s1 != NUL && *s2 != NUL) in utf_strnicmp()
3674 n1--; in utf_strnicmp()
3678 if (n1 > 0 && *s1 == NUL) in utf_strnicmp()
3679 n1 = 0; in utf_strnicmp()
3683 if (n1 == 0 && n2 == 0) in utf_strnicmp()
3685 return n1 == 0 ? -1 : 1; in utf_strnicmp()
5544 varnumber_T n1; in f_setcellwidths() local
5561 n1 = lili->li_tv.vval.v_number; in f_setcellwidths()
5562 if (n1 < 0x100) in f_setcellwidths()
5569 else if (i == 1 && lili->li_tv.vval.v_number < n1) in f_setcellwidths()
5607 varnumber_T n1; in f_setcellwidths() local
5609 n1 = lili->li_tv.vval.v_number; in f_setcellwidths()
5610 if (item > 0 && n1 <= table[item - 1].last) in f_setcellwidths()
5612 semsg(_(e_overlapping_ranges_for_nr), (long)n1); in f_setcellwidths()
5617 table[item].first = n1; in f_setcellwidths()