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