Searched refs:c1 (Results 151 - 175 of 644) sorted by relevance

1234567891011>>

/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/intl/
H A Dlocalealias.c399 unsigned char c1, c2;
408 c1 = isupper (*p1) ? tolower (*p1) : *p1;
410 if (c1 == '\0')
415 while (c1 == c2);
417 return c1 - c2;
/macosx-10.10.1/cxxfilt-11/cxxfilt/intl/
H A Dlocalealias.c399 unsigned char c1, c2;
408 c1 = isupper (*p1) ? tolower (*p1) : *p1;
410 if (c1 == '\0')
415 while (c1 == c2);
417 return c1 - c2;
/macosx-10.10.1/libiconv-42/libiconv/srclib/
H A Dprogreloc.c321 unsigned char c1 = *s1; local
323 if ((c1 >= 'A' && c1 <= 'Z' ? c1 - 'A' + 'a' : c1)
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DPathDrawing.py7 c1 = CGPoint(140, 5)
15 CGContextAddCurveToPoint(context, c1.x, c1.y, c2.x, c2.y, p1.x, p1.y)
17 CGContextAddCurveToPoint(context, -c2.x, c2.y, -c1.x, c1.y, p0.x, p0.y)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DPathDrawing.py7 c1 = CGPoint(140, 5)
15 CGContextAddCurveToPoint(context, c1.x, c1.y, c2.x, c2.y, p1.x, p1.y)
17 CGContextAddCurveToPoint(context, -c2.x, c2.y, -c1.x, c1.y, p0.x, p0.y)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DPathDrawing.py7 c1 = CGPoint(140, 5)
15 CGContextAddCurveToPoint(context, c1.x, c1.y, c2.x, c2.y, p1.x, p1.y)
17 CGContextAddCurveToPoint(context, -c2.x, c2.y, -c1.x, c1.y, p0.x, p0.y)
/macosx-10.10.1/Heimdal-398.1.2/lib/asn1/
H A Dcheck-gen.c865 TESTChoice1 c1; local
869 memset(&c1, 0, sizeof(c1));
870 c1.element = choice_TESTChoice1_i1;
871 c1.u.i1 = 1;
872 tests[0].val = &c1;
1019 TESTAlloc c1, c2, c3; local
1022 memset(&c1, 0, sizeof(c1));
1023 c1
1105 TESTOptional c0, c1, c2, c3; local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/unittests/VMCore/
H A DMetadataTest.cpp91 Value *const c1 = n1; local
92 MDNode *n2 = MDNode::get(Context, c1);
96 MDNode *n5 = MDNode::getIfExists(Context, c1);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/PathDemo/
H A DDemoView.py123 c1 = randomPointInRect(rect)
125 CGContextAddCurveToPoint(context, c1.x, c1.y,
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/PathDemo/
H A DDemoView.py123 c1 = randomPointInRect(rect)
125 CGContextAddCurveToPoint(context, c1.x, c1.y,
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/PathDemo/
H A DDemoView.py123 c1 = randomPointInRect(rect)
125 CGContextAddCurveToPoint(context, c1.x, c1.y,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_x509_tp/lib/
H A DcuEnc64.c78 unsigned char c1, c2, c3, c4; local
80 c1 = *inp >> 2;
84 *outp++ = ENC(c1);
244 unsigned char c1, c2, c3, c4; local
270 if (*bp & 0x80 || (c1 = asctobin[*bp]) & 0x80) {
326 j = (c1 << 2) | (c2 >> 4);
/macosx-10.10.1/man-16/man/src/
H A Dglob.c227 register char c1 = *t++;
230 if (c1 == '\0')
263 if (c1 >= cstart && c1 <= cend)
305 register char c, c1;
315 c1 = *p;
317 c1 = c;
322 if ((c == '[' || *t == c1) && glob_match (p, t, 0))
224 register char c1 = *t++; local
301 register char c, c1; local
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_module.rb482 c1 = Module.constants
485 assert_equal([:WALTER], c2 - c1)
555 c1 = Class.new
556 c2 = Class.new(c1)
558 eval("c1::Foo = :foo")
559 assert_equal(:foo, c1::Foo)
564 eval("c1::Foo = :foo")
565 assert_raise(NameError) { c1::Bar }
573 c1.instance_eval do
579 assert_equal(:Bar, c1
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/base64/
H A Duuencode.tcl31 foreach {c1 c2 c3} $d {
32 if {$c1 == {}} {set c1 0}
35 append r [Enc [expr {$c1 >> 2}]]
36 append r [Enc [expr {(($c1 << 4) & 060) | (($c2 >> 4) & 017)}]]
49 foreach {c0 c1 c2 c3} $d {
51 | ((($c1-0x20)&0x3F) >> 4) & 0xFF}]]
52 append r [format %c [expr {((($c1-0x20)&0x3F) << 4) & 0xFF
/macosx-10.10.1/vim-55/src/proto/
H A Dnormal.pro22 void do_nv_ident __ARGS((int c1, int c2));
/macosx-10.10.1/vim-55/src/testdir/
H A Dtest3.in208 if (c1 && (c2 ||
211 if (c1 &&
1081 c = c1 &&
1095 c = c1 &&
1109 c = c1 &&
1123 if ( c1
1136 if ( c1
1149 c = c1 && (
1154 c1 && c2
1166 c = c1
[all...]
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/corecrypto/
H A Dccn.h215 #define CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
218 CCN64_C(c7,c6,c5,c4,c3,c2,c1,c0)
220 #define CCN200_C(d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
221 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
224 #define CCN224_C(d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
225 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
228 #define CCN232_C(d4,d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
229 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0),\
232 #define CCN256_C(d7,d6,d5,d4,d3,d2,d1,d0,c7,c6,c5,c4,c3,c2,c1,c0,b7,b6,b5,b4,b3,b2,b1,b0,a7,a6,a5,a4,a3,a2,a1,a0) \
233 CCN192_C(c7,c6,c5,c4,c3,c2,c1,c
[all...]
/macosx-10.10.1/screen-22/screen/
H A Dencoding.c631 unsigned short c1; member in struct:combchar
645 AddUtf8(combchars[c - 0xd800]->c1);
670 l = ToUtf8_comb(p, combchars[c - 0xd800]->c1);
943 i = combchars[i]->c1;
955 int root, i, c1; local
958 c1 = mc->image | (mc->font << 8);
959 isdouble = c1 >= 0x1100 && utf8_isdouble(c1);
977 combchars[0x800]->c1 = 0x000;
981 combchars[0x801]->c1
1044 int c1, c2; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Ditercoll.cpp95 RuleBasedCollator *c1 = NULL; local
96 c1 = new RuleBasedCollator(
99 if (c1 == NULL || U_FAILURE(status))
102 delete c1;
107 iter = c1->createCollationElementIterator(source);
110 delete c1;
656 int32_t c1, c2, count = 0; local
661 c1 = i1.next(status);
664 if (c1 != c2)
666 errln(" %d: strength(0x%X) != strength(0x%X)", count, c1, c
[all...]
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcinst/
H A Dunicode.c179 wchar_t c1, c2; local
186 c1 = *s1++;
188 if(c1 == L'\0')
191 while (c1 == c2);
193 return c1 - c2;
235 wchar_t c1, c2; local
242 c1 = towlower(*s1++);
244 if(c1 == L'\0' || c1 != c2)
245 return c1
[all...]
/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dstreamio.c173 uint c, c1; local
182 c1 = ReadByte( in );
183 if (c1 == EndOfStream)
193 bom = (c << 8) + c1;
218 UngetByte(in, c1);
223 if (((c << 16) + (c1 << 8) + c2) == UNICODE_BOM_UTF8)
235 UngetByte(in, c1);
451 uint c1 = 0, replMode = DISCARDED_CHAR; local
467 c1 = TY_(DecodeWin1252)( c );
469 c1
1207 uint c1 = ReadByte( in ); local
1216 uint c1 = ReadByte( in ); local
1270 uint c1 = ReadByte( in ); local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/build_vxworks/db_load/
H A Ddb_load.c1071 int c1, c2, escape, first; local
1078 for (p = dbtp->data, len = 0; (c1 = getchar()) != '\n';) {
1079 if (c1 == EOF) {
1089 if (c1 != ' ') {
1090 buf[0] = c1;
1102 if (c1 != '\\') {
1105 DIGITIZE(c1, c1, c2);
1109 if (c1 == '\\') {
1123 *p++ = c1;
1141 int c1, c2, first; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/db_load/
H A Ddb_load.c1056 int c1, c2, escape, first; local
1063 for (p = dbtp->data, len = 0; (c1 = getchar()) != '\n';) {
1064 if (c1 == EOF) {
1074 if (c1 != ' ') {
1075 buf[0] = c1;
1087 if (c1 != '\\') {
1090 DIGITIZE(c1, c1, c2);
1094 if (c1 == '\\') {
1108 *p++ = c1;
1126 int c1, c2, first; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kdc/
H A Dhpropd.c75 krb5_principal c1, c2; local
189 ret = krb5_make_principal(context, &c1, NULL, "kadmin", "hprop", NULL);
194 if(!krb5_principal_compare(context, c1, c2)) {
201 krb5_free_principal(context, c1);

Completed in 305 milliseconds

1234567891011>>