Lines Matching refs:ucs2
42 static inline wchar_t *UniStrcpy(wchar_t * ucs1, const wchar_t * ucs2) in UniStrcpy() argument
46 while ((*ucs1++ = *ucs2++)); in UniStrcpy()
55 static inline __le16 *UniStrncpy_le(__le16 * ucs1, const __le16 * ucs2, in UniStrncpy_le() argument
60 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_le()
61 *ucs1++ = *ucs2++; in UniStrncpy_le()
72 static inline int UniStrncmp_le(const wchar_t * ucs1, const __le16 * ucs2, in UniStrncmp_le() argument
77 while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) { in UniStrncmp_le()
79 ucs2++; in UniStrncmp_le()
81 return (int) *ucs1 - (int) __le16_to_cpu(*ucs2); in UniStrncmp_le()
87 static inline __le16 *UniStrncpy_to_le(__le16 * ucs1, const wchar_t * ucs2, in UniStrncpy_to_le() argument
92 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_to_le()
93 *ucs1++ = cpu_to_le16(*ucs2++); in UniStrncpy_to_le()
104 static inline wchar_t *UniStrncpy_from_le(wchar_t * ucs1, const __le16 * ucs2, in UniStrncpy_from_le() argument
109 while (n-- && *ucs2) /* Copy the strings */ in UniStrncpy_from_le()
110 *ucs1++ = __le16_to_cpu(*ucs2++); in UniStrncpy_from_le()