Lines Matching refs:n
210 UniStrncat(wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncat() argument
216 while (n-- && (*ucs1 = *ucs2)) { /* copy s2 after s1 */ in UniStrncat()
228 UniStrncmp(const wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncmp() argument
230 if (!n) in UniStrncmp()
232 while ((*ucs1 == *ucs2) && *ucs1 && --n) { in UniStrncmp()
243 UniStrncmp_le(const wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncmp_le() argument
245 if (!n) in UniStrncmp_le()
247 while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) { in UniStrncmp_le()
258 UniStrncpy(wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncpy() argument
262 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy()
265 n++; in UniStrncpy()
266 while (n--) /* Pad with nulls */ in UniStrncpy()
275 UniStrncpy_le(wchar_t *ucs1, const wchar_t *ucs2, size_t n) in UniStrncpy_le() argument
279 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_le()
282 n++; in UniStrncpy_le()
283 while (n--) /* Pad with nulls */ in UniStrncpy_le()