Lines Matching refs:ucs1
42 static inline wchar_t *UniStrcpy(wchar_t * ucs1, const wchar_t * ucs2) in UniStrcpy() argument
44 wchar_t *anchor = ucs1; /* save the start of result string */ in UniStrcpy()
46 while ((*ucs1++ = *ucs2++)); in UniStrcpy()
55 static inline __le16 *UniStrncpy_le(__le16 * ucs1, const __le16 * ucs2, in UniStrncpy_le() argument
58 __le16 *anchor = ucs1; in UniStrncpy_le()
61 *ucs1++ = *ucs2++; in UniStrncpy_le()
65 *ucs1++ = 0; 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()
78 ucs1++; 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
90 __le16 *anchor = ucs1; in UniStrncpy_to_le()
93 *ucs1++ = cpu_to_le16(*ucs2++); in UniStrncpy_to_le()
97 *ucs1++ = 0; in UniStrncpy_to_le()
104 static inline wchar_t *UniStrncpy_from_le(wchar_t * ucs1, const __le16 * ucs2, in UniStrncpy_from_le() argument
107 wchar_t *anchor = ucs1; in UniStrncpy_from_le()
110 *ucs1++ = __le16_to_cpu(*ucs2++); in UniStrncpy_from_le()
114 *ucs1++ = 0; in UniStrncpy_from_le()