Lines Matching refs:n
165 UniStrncat(wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncat() argument
171 while (n-- && (*ucs1 = *ucs2)) { /* copy s2 after s1 */ in UniStrncat()
183 UniStrncmp(const wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncmp() argument
185 if (!n) in UniStrncmp()
187 while ((*ucs1 == *ucs2) && *ucs1 && --n) { in UniStrncmp()
198 UniStrncmp_le(const wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncmp_le() argument
200 if (!n) in UniStrncmp_le()
202 while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) { in UniStrncmp_le()
213 UniStrncpy(wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncpy() argument
217 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy()
220 n++; in UniStrncpy()
221 while (n--) /* Pad with nulls */ in UniStrncpy()
230 UniStrncpy_le(wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncpy_le() argument
234 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_le()
237 n++; in UniStrncpy_le()
238 while (n--) /* Pad with nulls */ in UniStrncpy_le()