Searched refs:wc (Results 176 - 200 of 1170) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/math-emu/
H A Dop-common.h27 #define _FP_DECL(wc, X) \
29 _FP_FRAC_DECL_##wc(X)
36 #define _FP_UNPACK_CANONICAL(fs, wc, X) \
42 _FP_FRAC_SLL_##wc(X, _FP_WORKBITS); \
48 if (_FP_FRAC_ZEROP_##wc(X)) \
54 _FP_FRAC_CLZ_##wc(_shift, X); \
56 _FP_FRAC_SLL_##wc(X, (_shift+_FP_WORKBITS)); \
69 if (_FP_FRAC_ZEROP_##wc(X)) \
89 #define _FP_PACK_CANONICAL(fs, wc, X) \
97 _FP_ROUND(wc,
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/busybox/include/
H A Dunicode.h21 #define unicode_bidi_isrtl(wc) 0
22 #define unicode_bidi_is_neutral_wchar(wc) (wc <= 126 && !isalpha(wc))
104 size_t wcrtomb(char *s, wchar_t wc, mbstate_t *ps) FAST_FUNC;
105 int iswspace(wint_t wc) FAST_FUNC;
106 int iswalnum(wint_t wc) FAST_FUNC;
107 int iswpunct(wint_t wc) FAST_FUNC;
111 int unicode_bidi_isrtl(wint_t wc) FAST_FUNC;
114 int unicode_bidi_is_neutral_wchar(wint_t wc) FAST_FUN
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/busybox/include/
H A Dunicode.h21 #define unicode_bidi_isrtl(wc) 0
22 #define unicode_bidi_is_neutral_wchar(wc) (wc <= 126 && !isalpha(wc))
104 size_t wcrtomb(char *s, wchar_t wc, mbstate_t *ps) FAST_FUNC;
105 int iswspace(wint_t wc) FAST_FUNC;
106 int iswalnum(wint_t wc) FAST_FUNC;
107 int iswpunct(wint_t wc) FAST_FUNC;
111 int unicode_bidi_isrtl(wint_t wc) FAST_FUNC;
114 int unicode_bidi_is_neutral_wchar(wint_t wc) FAST_FUN
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/busybox/include/
H A Dunicode.h21 #define unicode_bidi_isrtl(wc) 0
22 #define unicode_bidi_is_neutral_wchar(wc) (wc <= 126 && !isalpha(wc))
104 size_t wcrtomb(char *s, wchar_t wc, mbstate_t *ps) FAST_FUNC;
105 int iswspace(wint_t wc) FAST_FUNC;
106 int iswalnum(wint_t wc) FAST_FUNC;
107 int iswpunct(wint_t wc) FAST_FUNC;
111 int unicode_bidi_isrtl(wint_t wc) FAST_FUNC;
114 int unicode_bidi_is_neutral_wchar(wint_t wc) FAST_FUN
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libiconv-1.14/lib/
H A Dcp950ext.h44 unsigned short wc = 0xfffd; local
47 wc = cp950ext_2uni_pagef9[i-13932];
49 if (wc != 0xfffd) {
50 *pwc = (ucs4_t) wc;
121 cp950ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
125 if (wc >= 0x2500 && wc < 0x25a0)
126 summary = &cp950ext_uni2indx_page25[(wc>>4)-0x250];
127 else if (wc >= 0x5800 && wc <
[all...]
H A Dutf7.h109 unsigned int wc = 0; local
145 wc = (wc << 8) | (base64state & -4) | (i >> 4); k++;
148 wc = (wc << 8) | (base64state & -4) | (i >> 2); k++;
151 wc = (wc << 8) | (base64state & -4) | i; k++;
157 if (kmax == 2 && (wc >= 0xd800 && wc < 0xdc00))
168 ucs4_t wc1 = wc >> 1
213 unsigned int wc = iwc; local
[all...]
H A Dcp1161.h69 cp1161_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
72 if (wc < 0x0080) {
73 *r = wc;
76 else if (wc >= 0x00a0 && wc < 0x00b0)
77 c = cp1161_page00[wc-0x00a0];
78 else if (wc >= 0x0e48 && wc < 0x0e4c)
79 c = wc-0x0d60;
80 else if (wc >
[all...]
H A Diso8859_15.h61 iso8859_15_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
64 if (wc < 0x00a0) {
65 *r = wc;
68 else if (wc >= 0x00a0 && wc < 0x00c0)
69 c = iso8859_15_page00[wc-0x00a0];
70 else if (wc >= 0x00c0 && wc < 0x0100)
71 c = wc;
72 else if (wc >
[all...]
H A Dcp1258.h78 unsigned short wc; local
81 wc = c;
83 wc = cp1258_2uni[c-0x80];
84 if (wc == 0xfffd)
89 if (wc >= 0x0300 && wc < 0x0340) {
90 /* See whether last_wc and wc can be combined. */
93 switch (wc) {
138 if (wc >= 0x0041 && wc <
204 cp1258_wctomb(conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
[all...]
H A Diso8859_7.h55 unsigned short wc = iso8859_7_2uni[c-0xa0]; local
56 if (wc != 0xfffd) {
57 *pwc = (ucs4_t) wc;
89 iso8859_7_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
92 if (wc < 0x00a0) {
93 *r = wc;
96 else if (wc >= 0x00a0 && wc < 0x00c0)
97 c = iso8859_7_page00[wc-0x00a0];
98 else if (wc >
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libiconv-1.14/lib/
H A Dcp950ext.h44 unsigned short wc = 0xfffd; local
47 wc = cp950ext_2uni_pagef9[i-13932];
49 if (wc != 0xfffd) {
50 *pwc = (ucs4_t) wc;
121 cp950ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
125 if (wc >= 0x2500 && wc < 0x25a0)
126 summary = &cp950ext_uni2indx_page25[(wc>>4)-0x250];
127 else if (wc >= 0x5800 && wc <
[all...]
H A Dutf7.h109 unsigned int wc = 0; local
145 wc = (wc << 8) | (base64state & -4) | (i >> 4); k++;
148 wc = (wc << 8) | (base64state & -4) | (i >> 2); k++;
151 wc = (wc << 8) | (base64state & -4) | i; k++;
157 if (kmax == 2 && (wc >= 0xd800 && wc < 0xdc00))
168 ucs4_t wc1 = wc >> 1
213 unsigned int wc = iwc; local
[all...]
H A Dcp1161.h69 cp1161_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
72 if (wc < 0x0080) {
73 *r = wc;
76 else if (wc >= 0x00a0 && wc < 0x00b0)
77 c = cp1161_page00[wc-0x00a0];
78 else if (wc >= 0x0e48 && wc < 0x0e4c)
79 c = wc-0x0d60;
80 else if (wc >
[all...]
H A Diso8859_15.h61 iso8859_15_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
64 if (wc < 0x00a0) {
65 *r = wc;
68 else if (wc >= 0x00a0 && wc < 0x00c0)
69 c = iso8859_15_page00[wc-0x00a0];
70 else if (wc >= 0x00c0 && wc < 0x0100)
71 c = wc;
72 else if (wc >
[all...]
H A Dcp1258.h78 unsigned short wc; local
81 wc = c;
83 wc = cp1258_2uni[c-0x80];
84 if (wc == 0xfffd)
89 if (wc >= 0x0300 && wc < 0x0340) {
90 /* See whether last_wc and wc can be combined. */
93 switch (wc) {
138 if (wc >= 0x0041 && wc <
204 cp1258_wctomb(conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
[all...]
H A Diso8859_7.h55 unsigned short wc = iso8859_7_2uni[c-0xa0]; local
56 if (wc != 0xfffd) {
57 *pwc = (ucs4_t) wc;
89 iso8859_7_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
92 if (wc < 0x00a0) {
93 *r = wc;
96 else if (wc >= 0x00a0 && wc < 0x00c0)
97 c = iso8859_7_page00[wc-0x00a0];
98 else if (wc >
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libiconv-1.14/lib/
H A Dcp950ext.h44 unsigned short wc = 0xfffd; local
47 wc = cp950ext_2uni_pagef9[i-13932];
49 if (wc != 0xfffd) {
50 *pwc = (ucs4_t) wc;
121 cp950ext_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
125 if (wc >= 0x2500 && wc < 0x25a0)
126 summary = &cp950ext_uni2indx_page25[(wc>>4)-0x250];
127 else if (wc >= 0x5800 && wc <
[all...]
H A Dutf7.h109 unsigned int wc = 0; local
145 wc = (wc << 8) | (base64state & -4) | (i >> 4); k++;
148 wc = (wc << 8) | (base64state & -4) | (i >> 2); k++;
151 wc = (wc << 8) | (base64state & -4) | i; k++;
157 if (kmax == 2 && (wc >= 0xd800 && wc < 0xdc00))
168 ucs4_t wc1 = wc >> 1
213 unsigned int wc = iwc; local
[all...]
H A Dcp1161.h69 cp1161_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
72 if (wc < 0x0080) {
73 *r = wc;
76 else if (wc >= 0x00a0 && wc < 0x00b0)
77 c = cp1161_page00[wc-0x00a0];
78 else if (wc >= 0x0e48 && wc < 0x0e4c)
79 c = wc-0x0d60;
80 else if (wc >
[all...]
H A Diso8859_15.h61 iso8859_15_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
64 if (wc < 0x00a0) {
65 *r = wc;
68 else if (wc >= 0x00a0 && wc < 0x00c0)
69 c = iso8859_15_page00[wc-0x00a0];
70 else if (wc >= 0x00c0 && wc < 0x0100)
71 c = wc;
72 else if (wc >
[all...]
H A Dcp1258.h78 unsigned short wc; local
81 wc = c;
83 wc = cp1258_2uni[c-0x80];
84 if (wc == 0xfffd)
89 if (wc >= 0x0300 && wc < 0x0340) {
90 /* See whether last_wc and wc can be combined. */
93 switch (wc) {
138 if (wc >= 0x0041 && wc <
204 cp1258_wctomb(conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
[all...]
H A Diso8859_7.h55 unsigned short wc = iso8859_7_2uni[c-0xa0]; local
56 if (wc != 0xfffd) {
57 *pwc = (ucs4_t) wc;
89 iso8859_7_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
92 if (wc < 0x00a0) {
93 *r = wc;
96 else if (wc >= 0x00a0 && wc < 0x00c0)
97 c = iso8859_7_page00[wc-0x00a0];
98 else if (wc >
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/netatalk-3.0.5/libatalk/unicode/charsets/
H A Dmac_hebrew.c60 char_ucs2_to_mac_hebrew ( unsigned char *r, ucs2_t wc) argument
63 if (wc < 0x0080) {
64 *r = wc;
67 else if (wc >= 0x00a0 && wc < 0x0100)
68 c = mac_hebrew_page00[wc-0x00a0];
69 else if (wc >= 0x05b0 && wc < 0x05f0)
70 c = mac_hebrew_page05[wc-0x05b0];
71 else if (wc >
147 unsigned short wc = mac_hebrew_2uni[c-0x80]; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/netatalk-3.0.5/libatalk/unicode/charsets/
H A Dmac_hebrew.c60 char_ucs2_to_mac_hebrew ( unsigned char *r, ucs2_t wc) argument
63 if (wc < 0x0080) {
64 *r = wc;
67 else if (wc >= 0x00a0 && wc < 0x0100)
68 c = mac_hebrew_page00[wc-0x00a0];
69 else if (wc >= 0x05b0 && wc < 0x05f0)
70 c = mac_hebrew_page05[wc-0x05b0];
71 else if (wc >
147 unsigned short wc = mac_hebrew_2uni[c-0x80]; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/netatalk-3.0.5/libatalk/unicode/charsets/
H A Dmac_hebrew.c60 char_ucs2_to_mac_hebrew ( unsigned char *r, ucs2_t wc) argument
63 if (wc < 0x0080) {
64 *r = wc;
67 else if (wc >= 0x00a0 && wc < 0x0100)
68 c = mac_hebrew_page00[wc-0x00a0];
69 else if (wc >= 0x05b0 && wc < 0x05f0)
70 c = mac_hebrew_page05[wc-0x05b0];
71 else if (wc >
147 unsigned short wc = mac_hebrew_2uni[c-0x80]; local
[all...]

Completed in 214 milliseconds

1234567891011>>