Searched refs:ucs2 (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A Dcifs_unicode.h73 UniStrcat(wchar_t * ucs1, const wchar_t * ucs2) argument
79 while ((*ucs1++ = *ucs2++)) ; /* copy string 2 over */
110 UniStrcmp(const wchar_t * ucs1, const wchar_t * ucs2) argument
112 while ((*ucs1 == *ucs2) && *ucs1) {
114 ucs2++;
116 return (int) *ucs1 - (int) *ucs2;
123 UniStrcpy(wchar_t * ucs1, const wchar_t * ucs2) argument
127 while ((*ucs1++ = *ucs2++)) ;
164 UniStrncat(wchar_t * ucs1, const wchar_t * ucs2, size_t n) argument
170 while (n-- && (*ucs1 = *ucs2)) { /* cop
182 UniStrncmp(const wchar_t * ucs1, const wchar_t * ucs2, size_t n) argument
197 UniStrncmp_le(const wchar_t * ucs1, const wchar_t * ucs2, size_t n) argument
212 UniStrncpy(wchar_t * ucs1, const wchar_t * ucs2, size_t n) argument
229 UniStrncpy_le(wchar_t * ucs1, const wchar_t * ucs2, size_t n) argument
250 UniStrstr(const wchar_t * ucs1, const wchar_t * ucs2) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_unicode.h41 static inline wchar_t *UniStrcpy(wchar_t * ucs1, const wchar_t * ucs2) argument
45 while ((*ucs1++ = *ucs2++));
54 static inline __le16 *UniStrncpy_le(__le16 * ucs1, const __le16 * ucs2, argument
59 while (n-- && *ucs2) /* Copy the strings */
60 *ucs1++ = *ucs2++;
71 static inline int UniStrncmp_le(const wchar_t * ucs1, const __le16 * ucs2, argument
76 while ((*ucs1 == __le16_to_cpu(*ucs2)) && *ucs1 && --n) {
78 ucs2++;
80 return (int) *ucs1 - (int) __le16_to_cpu(*ucs2);
86 static inline __le16 *UniStrncpy_to_le(__le16 * ucs1, const wchar_t * ucs2, argument
103 UniStrncpy_from_le(wchar_t * ucs1, const __le16 * ucs2, size_t n) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_common/
H A Dtags.c93 static FLaC__INLINE size_t local__utf8_to_ucs2(const FLAC__byte *utf8, FLAC__uint16 *ucs2) argument
97 FLAC__ASSERT(0 != ucs2);
100 *ucs2 = *utf8;
102 *ucs2 = (*utf8 & 0x3F)<<6 | (*(utf8+1) & 0x3F);
104 *ucs2 = (*utf8 & 0x1F)<<12 | (*(utf8+1) & 0x3F)<<6 | (*(utf8+2) & 0x3F);
106 *ucs2 = '?';
148 static FLaC__INLINE size_t local__ucs2len(FLAC__uint16 ucs2) argument
150 if (ucs2 < 0x0080)
152 else if (ucs2 < 0x0800)
158 static FLaC__INLINE size_t local__ucs2_to_utf8(FLAC__uint16 ucs2, FLAC__byt argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Dinfobox.c200 #define SetText(x,y) ucs2 = FLAC_plugin__tags_get_tag_ucs2(data->tags, y); \
201 WideCharToMultiByte(CP_ACP, WC_COMPOSITECHECK, ucs2, -1, buffer, sizeof(buffer), NULL, NULL); \
202 if(ucs2) free(ucs2); \
206 if (*buffer) { ucs2 = AnsiToWide(buffer); FLAC_plugin__tags_set_tag_ucs2(data->tags, y, ucs2, /*replace_all=*/false); free(ucs2); } \
209 #define SetTextW(x,y) ucs2 = FLAC_plugin__tags_get_tag_ucs2(data->tags, y); \
210 SetDlgItemTextW(hwnd, x, ucs2); \
211 free(ucs2)
221 wchar_t *ucs2; local
291 wchar_t *ucs2; local
428 wchar_t *ucs2; local
[all...]

Completed in 56 milliseconds