Lines Matching refs:ucs2
29 static inline wchar_t *UniStrcpy(wchar_t * ucs1, const wchar_t * ucs2) in UniStrcpy() argument
33 while ((*ucs1++ = *ucs2++)); in UniStrcpy()
42 static inline __le16 *UniStrncpy_le(__le16 * ucs1, const __le16 * ucs2, in UniStrncpy_le() argument
47 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_le()
48 *ucs1++ = *ucs2++; in UniStrncpy_le()
59 static inline int UniStrncmp_le(const wchar_t * ucs1, const __le16 * ucs2, in UniStrncmp_le() argument
64 while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) { in UniStrncmp_le()
66 ucs2++; in UniStrncmp_le()
68 return (int) *ucs1 - (int) __le16_to_cpu(*ucs2); in UniStrncmp_le()
74 static inline __le16 *UniStrncpy_to_le(__le16 * ucs1, const wchar_t * ucs2, in UniStrncpy_to_le() argument
79 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_to_le()
80 *ucs1++ = cpu_to_le16(*ucs2++); in UniStrncpy_to_le()
91 static inline wchar_t *UniStrncpy_from_le(wchar_t * ucs1, const __le16 * ucs2, in UniStrncpy_from_le() argument
96 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_from_le()
97 *ucs1++ = __le16_to_cpu(*ucs2++); in UniStrncpy_from_le()