Searched refs:uc2 (Results 1 - 14 of 14) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistr/
H A Du-startswith.h24 UNIT uc2 = *prefix++; local
25 if (uc2 == 0)
27 if (uc1 != uc2)
H A Du32-strcmp.c29 uint32_t uc2 = *s2++; local
30 if (uc1 != 0 && uc1 == uc2)
32 /* Note that uc1 and uc2 each have at most 31 bits. */
33 return (int)uc1 - (int)uc2;
34 /* > 0 if uc1 > uc2, < 0 if uc1 < uc2. */
H A Du32-cmp.c29 uint32_t uc2 = *s2++; local
30 if (uc1 == uc2)
35 /* Note that uc1 and uc2 each have at most 31 bits. */
36 return (int)uc1 - (int)uc2;
37 /* > 0 if uc1 > uc2, < 0 if uc1 < uc2. */
H A Du32-strncmp.c29 uint32_t uc2 = *s2++; local
30 if (uc1 != 0 && uc1 == uc2)
35 /* Note that uc1 and uc2 each have at most 31 bits. */
36 return (int)uc1 - (int)uc2;
37 /* > 0 if uc1 > uc2, < 0 if uc1 < uc2, = 0 if uc1 and uc2 are both 0. */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/uninorm/
H A Dcomposition.c30 uc_composition (ucs4_t uc1, ucs4_t uc2) argument
32 if (uc1 < 0x10000 && uc2 < 0x10000)
34 if (uc2 >= 0x1161 && uc2 < 0x1161 + 21
39 return 0xAC00 + ((uc1 - 0x1100) * 21 + (uc2 - 0x1161)) * 28;
41 else if (uc2 > 0x11A7 && uc2 < 0x11A7 + 28
46 return uc1 + (uc2 - 0x11A7);
51 unsigned int uc = MUL1 * uc1 * MUL2 * uc2;
64 if ((lookup3 >> 16) == uc2)
[all...]
H A Dnormalize-internal.h34 ucs4_t (*composer) (ucs4_t uc1, ucs4_t uc2);
H A Du-normalize-internal.h23 ucs4_t (*composer) (ucs4_t uc1, ucs4_t uc2) = nf->composer;
H A Duninorm-filter.c37 ucs4_t (*composer) (ucs4_t uc1, ucs4_t uc2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unicase/
H A Du-casemap.h119 ucs4_t uc2; local
120 int count2 = U_MBTOUC_UNSAFE (&uc2, s2, s_end - s2);
125 if (!uc_is_case_ignorable (uc2))
127 applies = ! uc_is_cased (uc2);
161 ucs4_t uc2; local
162 int count2 = U_MBTOUC_UNSAFE (&uc2, s2, s_end - s2);
163 int ccc = uc_combining_class (uc2);
196 ucs4_t uc2; local
197 int count2 = U_MBTOUC_UNSAFE (&uc2, s2, s_end - s2);
198 if (uc2
[all...]
H A Du-ct-totitle.h195 ucs4_t uc2; local
196 int count2 = U_MBTOUC_UNSAFE (&uc2, s2, s_end - s2);
201 if (!uc_is_case_ignorable (uc2))
203 applies = ! uc_is_cased (uc2);
237 ucs4_t uc2; local
238 int count2 = U_MBTOUC_UNSAFE (&uc2, s2, s_end - s2);
239 int ccc = uc_combining_class (uc2);
272 ucs4_t uc2; local
273 int count2 = U_MBTOUC_UNSAFE (&uc2, s2, s_end - s2);
274 if (uc2
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dwrite-properties.c108 unsigned int uc2 = 0xdc00 + ((uc - 0x10000) & 0x3ff); local
114 hexdigit[(uc2 >> 12) & 0x0f], hexdigit[(uc2 >> 8) & 0x0f],
115 hexdigit[(uc2 >> 4) & 0x0f], hexdigit[uc2 & 0x0f]);
186 unsigned int uc2 = 0xdc00 + ((uc - 0x10000) & 0x3ff); local
197 seq[2] = hexdigit[(uc2 >> 12) & 0x0f];
198 seq[3] = hexdigit[(uc2 >> 8) & 0x0f];
199 seq[4] = hexdigit[(uc2 >> 4) & 0x0f];
200 seq[5] = hexdigit[uc2
[all...]
H A Dwrite-java.c129 unsigned int uc2 = 0xdc00 + ((uc - 0x10000) & 0x3ff); local
131 hash = 31 * hash + uc2;
388 unsigned int uc2 = 0xdc00 + ((uc - 0x10000) & 0x3ff); local
393 hexdigit[(uc2 >> 12) & 0x0f], hexdigit[(uc2 >> 8) & 0x0f],
394 hexdigit[(uc2 >> 4) & 0x0f], hexdigit[uc2 & 0x0f]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Duninorm.h98 /* Attempt to combine the Unicode characters uc1, uc2.
100 Return the combination of uc1 and uc2, if it exists.
105 uc_composition (ucs4_t uc1, ucs4_t uc2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dtelnet.c1009 unsigned char*uc1, *uc2; local
1026 uc2 = (unsigned char*)&y;
1029 CURL_SB_ACCUM(tn, uc2[0]);
1030 CURL_SB_ACCUM(tn, uc2[1]);

Completed in 186 milliseconds