Searched refs:c2 (Results 1 - 25 of 664) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dstd.cpp38 int c1, c2; local
43 c2 = tolower(*p2++);
44 } while (c1 != 0 && c1 == c2);
48 c2 = *p2++;
49 } while (c1 != 0 && (c1 == c2 || tolower(c1) == tolower(c2)));
52 c2 = tolower(c2);
55 return c1 - c2;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/astsa/
H A Dhashkey.h41 #define HASHKEY2(c1,c2) HASHKEYPART(HASHKEY1(c1),c2)
42 #define HASHKEY3(c1,c2,c3) HASHKEYPART(HASHKEY2(c1,c2),c3)
43 #define HASHKEY4(c1,c2,c3,c4) HASHKEYPART(HASHKEY3(c1,c2,c3),c4)
44 #define HASHKEY5(c1,c2,c3,c4,c5) HASHKEYPART(HASHKEY4(c1,c2,c3,c4),c5)
45 #define HASHKEY6(c1,c2,c3,c4,c5,c6) HASHKEYPART(HASHKEY5(c1,c2,c
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/include/
H A Dhashkey.h42 #define HASHKEY2(c1,c2) HASHKEYPART(HASHKEY1(c1),c2)
43 #define HASHKEY3(c1,c2,c3) HASHKEYPART(HASHKEY2(c1,c2),c3)
44 #define HASHKEY4(c1,c2,c3,c4) HASHKEYPART(HASHKEY3(c1,c2,c3),c4)
45 #define HASHKEY5(c1,c2,c3,c4,c5) HASHKEYPART(HASHKEY4(c1,c2,c3,c4),c5)
46 #define HASHKEY6(c1,c2,c3,c4,c5,c6) HASHKEYPART(HASHKEY5(c1,c2,c
[all...]
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstrcasecmp.c38 unsigned char c1, c2; local
46 c2 = TOLOWER (*p2);
54 while (c1 == c2);
57 return c1 - c2;
62 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
H A Dstrncasecmp.c38 unsigned char c1, c2; local
46 c2 = TOLOWER (*p2);
54 while (c1 == c2);
57 return c1 - c2;
62 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
H A Dmbscasecmp.c80 unsigned char c1, c2; local
85 c2 = TOLOWER (*p2);
93 while (c1 == c2);
96 return c1 - c2;
101 return (c1 > c2 ? 1 : c1 < c2 ? -1 : 0);
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dcp936.h71 unsigned char c2 = s[1]; local
72 if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xa1)) {
73 *pwc = 0xe4c6 + 96 * (c - 0xa1) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));
81 unsigned char c2 = s[1]; local
82 if (c2 >= 0xa1 && c2 <
109 unsigned int c2 = i % 94; local
116 unsigned int c2 = i % 96; local
[all...]
H A Dcns11643_4.h38 unsigned char c2 = s[1]; local
39 if (c2 >= 0x21 && c2 < 0x7f) {
40 unsigned int i = 94 * (c1 - 0x21) + (c2 - 0x21);
H A Deuc_jp.h37 unsigned char c2 = s[1]; local
38 if (c2 >= 0xa1 && c2 < 0xff) {
40 buf[0] = c-0x80; buf[1] = c2-0x80;
47 unsigned char c2 = s[1]; local
48 if (c2 >= 0xa1 && c2 < 0xff) {
49 *pwc = 0xe000 + 94*(c-0xf5) + (c2-0xa1);
60 unsigned char c2 = s[1]; local
61 if (c2 >
76 unsigned char c2 = s[1]; local
169 unsigned char c1, c2; local
178 unsigned char c1, c2; local
[all...]
H A Dces_big5.h37 unsigned char c2 = s[1]; local
38 if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff))
H A Dbig5hkscs1999.h68 unsigned char c2 = s[1]; local
69 if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {
70 if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {
87 unsigned char c2 = s[1]; local
88 if (c2 == 0x62 || c2 == 0x64 || c2
[all...]
H A Disoir165.h91 unsigned char c2 = s[1]; local
92 if (c2 >= 0x21 && c2 <= 0x40) {
95 buf[1] = c2;
109 unsigned char c2 = s[1]; local
110 if (c2 >= 0x21 && c2 < 0x7f) {
H A Ddec_hanyu.h39 unsigned char c2 = s[1]; local
40 if (c == 0xc2 && c2 == 0xcb) {
53 } else if (c2 >= 0xa1 && c2 < 0xff) {
54 if (c != 0xc2 || c2 < 0xc2) {
56 buf[0] = c-0x80; buf[1] = c2-0x80;
59 } else if (c2 >= 0x21 && c2 < 0x7f) {
61 buf[0] = c-0x80; buf[1] = c2;
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/asm/
H A Dx86_64-gcc.c267 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
268 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
269 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
270 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
274 #define mul_add_c(a,b,c0,c1,c2) { \
279 c1 += t2; c2
352 BN_ULONG c1,c2,c3; local
456 BN_ULONG c1,c2,c3; local
496 BN_ULONG c1,c2,c3; local
572 BN_ULONG c1,c2,c3; local
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/
H A Dbn_asm.c429 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
430 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
431 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
432 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
435 #define mul_add_c(a,b,c0,c1,c2) \
440 c1=(c1+t2)&BN_MASK2; if ((c1) < t2) c2
558 BN_ULONG c1,c2,c3; local
667 BN_ULONG c1,c2,c3; local
712 BN_ULONG c1,c2,c3; local
793 BN_ULONG c1,c2,c3; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_asm.c452 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
453 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
454 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
455 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */
458 #define mul_add_c(a,b,c0,c1,c2) \
463 c1=(c1+t2)&BN_MASK2; if ((c1) < t2) c2
553 BN_ULONG c1,c2,c3; local
662 BN_ULONG c1,c2,c3; local
707 BN_ULONG c1,c2,c3; local
788 BN_ULONG c1,c2,c3; local
[all...]
/macosx-10.10.1/Libc-1044.1.2/string/FreeBSD/
H A Dwcscasecmp.c38 wchar_t c1, c2; local
42 c2 = towlower_l(*s2, loc);
43 if (c1 != c2)
44 return ((int)c1 - c2);
H A Dwcsncasecmp.c38 wchar_t c1, c2; local
44 c2 = towlower_l(*s2, loc);
45 if (c1 != c2)
46 return ((int)c1 - c2);
/macosx-10.10.1/Libc-1044.1.2/locale/FreeBSD/
H A Dcollcmp.c39 __collate_range_cmp(wchar_t c1, wchar_t c2, locale_t loc) argument
44 s2[0] = c2;
/macosx-10.10.1/cups-408/cups/ppdc/
H A Dppdc-constraint.cxx35 const char *c2) // I - Second choice
43 choice2 = new ppdcString(c2);
32 ppdcConstraint(const char *o1, const char *c1, const char *o2, const char *c2) argument
/macosx-10.10.1/system_cmds-643.1.1/sa.tproj/
H A Dmain.c454 struct cmdinfo c1, c2; local
462 memcpy(&c2, d2->data, sizeof(c2));
465 t2 = c2.ci_utime + c2.ci_stime;
470 return (cmp_comm(c1.ci_comm, c2.ci_comm));
479 struct cmdinfo c1, c2; local
483 memcpy(&c2, d2->data, sizeof(c2));
488 t2 = c2
503 struct cmdinfo c1, c2; local
520 struct cmdinfo c1, c2; local
546 struct cmdinfo c1, c2; local
563 struct cmdinfo c1, c2; local
597 struct cmdinfo c1, c2; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/libtelnet/
H A Dgenget.c56 char c1, c2; local
62 c2 = *s2;
63 while (tolower((unsigned char)c1) == tolower((unsigned char)c2)) {
67 c2 = *++s2;
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dstrcasecmp.c47 unsigned char c1, c2; local
55 c2 = TOLOWER (*p2);
63 while (c1 == c2);
65 return c1 - c2;
/macosx-10.10.1/gpatch-3/patch/
H A Dstrcasecmp.c47 unsigned char c1, c2; local
55 c2 = TOLOWER (*p2);
63 while (c1 == c2);
65 return c1 - c2;
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dstrcasecmp.c47 unsigned char c1, c2; local
55 c2 = TOLOWER (*p2);
63 while (c1 == c2);
65 return c1 - c2;

Completed in 205 milliseconds

1234567891011>>