Lines Matching refs:nlen
440 int nlen = utf_char2len(lc); in str_foldcase() local
444 if (olen != nlen) in str_foldcase()
446 if (nlen > olen) in str_foldcase()
449 ? ga_grow(&ga, nlen - olen + 1) == FAIL in str_foldcase()
450 : len + nlen - olen >= buflen) in str_foldcase()
454 nlen = olen; in str_foldcase()
457 if (olen != nlen) in str_foldcase()
461 STRMOVE(GA_PTR(i) + nlen, GA_PTR(i) + olen); in str_foldcase()
462 ga.ga_len += nlen - olen; in str_foldcase()
466 STRMOVE(buf + i + nlen, buf + i + olen); in str_foldcase()
467 len += nlen - olen; in str_foldcase()