Searched refs:c2 (Results 201 - 225 of 664) sorted by relevance

1234567891011>>

/macosx-10.10.1/ppp-786.1.1/Helpers/pppdump/
H A Dpppdump.c110 int nb, c2; local
135 c2 = buf[k];
136 putchar((' ' <= c2 && c2 <= '~')? c2: '.');
167 c2 = buf[k];
168 putchar((' ' <= c2 && c2 <= '~')? c2: '.');
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duiter.cpp1023 UChar32 c, c2; local
1033 if(U16_IS_TRAIL(c2=iter->current(iter))) {
1034 c=U16_GET_SUPPLEMENTARY(c, c2);
1040 if(U16_IS_LEAD(c2=iter->previous(iter))) {
1041 c=U16_GET_SUPPLEMENTARY(c2, c);
1043 if(c2>=0) {
1054 UChar32 c, c2; local
1058 if(U16_IS_TRAIL(c2=iter->next(iter))) {
1059 c=U16_GET_SUPPLEMENTARY(c, c2);
1060 } else if(c2>
1070 UChar32 c, c2; local
[all...]
/macosx-10.10.1/groff-38/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp125 int next(unsigned char *c1, unsigned char *c2, int *k);
134 int kern_iterator::next(unsigned char *c1, unsigned char *c2, int *k) argument
148 *c2 = t->lig_kern[i].next_char;
174 int tfm::get_lig(unsigned char c1, unsigned char c2, unsigned char *cp) argument
187 && lig_kern[i].next_char == c2) {
284 int c2 = getc(fp); local
285 if (c1 == EOF || c2 == EOF) {
290 int lf = (c1 << 8) + c2;
674 unsigned char c1, c2, res; member in struct:S2
804 int i2 = lig_chars[lig_table[i].c2]
824 unsigned char c1, c2; local
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/parser/
H A DLexer.h80 static unsigned char convertHex(int c1, int c2);
81 static UChar convertUnicode(int c1, int c2, int c3, int c4);
269 inline unsigned char Lexer<T>::convertHex(int c1, int c2) argument
271 return (toASCIIHexValue(c1) << 4) | toASCIIHexValue(c2);
275 inline UChar Lexer<T>::convertUnicode(int c1, int c2, int c3, int c4) argument
277 return (convertHex(c1, c2) << 8) | convertHex(c3, c4);
/macosx-10.10.1/Heimdal-398.1.2/lib/asn1/
H A Dcheck-gen.c645 Certificate c, c2; local
657 ret = copy_Certificate(&c, &c2);
662 free_Certificate(&c2);
1019 TESTAlloc c1, c2, c3; local
1028 memset(&c2, 0, sizeof(c2));
1029 c2.tagless = NULL;
1030 c2.three = 3;
1031 tests[1].val = &c2;
1105 TESTOptional c0, c1, c2, c local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Dseqmod.c41 sm_avl_cmp( const void *c1, const void *c2 )
46 m1 = c1; m2 = c2;
/macosx-10.10.1/llvmCore-3425.0.34/unittests/VMCore/
H A DMetadataTest.cpp93 Value *const c2 = n2; local
97 MDNode *n6 = MDNode::getIfExists(Context, c2);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cftree.py50 c2 = CFTreeGetChildAtIndex(root, 0)
51 self.failUnless(c is c2)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cftree.py61 c2 = CFTreeGetChildAtIndex(root, 0)
62 self.assertIs(c, c2)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cftree.py65 c2 = CFTreeGetChildAtIndex(root, 0)
66 self.assertIs(c, c2)
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_cross_reference.rb28 @xref = RDoc::CrossReference.new @c2
93 assert_ref @c2, 'C2'
H A Dtest_rdoc_markup_to_html_crossref.rb125 @to = RDoc::Markup::ToHtmlCrossref.new @options, 'C2.html', @c2
144 @to = RDoc::Markup::ToHtmlCrossref.new @options, 'C2.html', @c2
H A Dtest_rdoc_method_attr.rb123 assert_equal 'C1#m', @c1_m.output_name(@c2)
124 assert_equal 'C1.m', @c1__m.output_name(@c2)
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/examples/plotchart/
H A Dplotdemos8.tcl27 set s [::Plotchart::createXYPlot .c2 {1990 2050 {}} {0.0 100.0 20.0} \
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dttkbut.tcl66 ttk::checkbutton $w.checks.c2 -text Tomato -variable tomato
70 pack $w.checks.e $w.checks.sep1 $w.checks.c1 $w.checks.c2 $w.checks.sep2 \
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Dread.c323 UChar32 c, c2; local
357 c2 = ucbuf_getc(buf, status); /* "/ * c" */
358 if(c2 == ASTERISK){ /* "/ * *" */
362 ucbuf_ungetc(c2, buf); /* c2 is the non-asterisk following "/ *". Include c2 back in buffer. */
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-monitor/
H A Dcache.c48 const void *c2 )
51 monitor_cache_t *cc2 = ( monitor_cache_t * )c2;
65 void *c2 )
68 monitor_cache_t *cc2 = ( monitor_cache_t * )c2;
/macosx-10.10.1/bootp-298/bootplib/
H A Dutil.c354 uint8_t * c2 = e2->octet; local
356 for (i = 0; i < sizeof(e1->octet); i++, c1++, c2++) {
357 if (*c1 == *c2)
359 return ((int)*c1 - (int)*c2);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Delf-eh-frame.c213 const struct cie *c2 = e2; local
215 if (c1->hash == c2->hash
216 && c1->length == c2->length
217 && c1->version == c2->version
218 && strcmp (c1->augmentation, c2->augmentation) == 0
220 && c1->code_align == c2->code_align
221 && c1->data_align == c2->data_align
222 && c1->ra_column == c2->ra_column
223 && c1->augmentation_size == c2->augmentation_size
224 && c1->personality == c2
[all...]
/macosx-10.10.1/groff-38/groff/src/utils/afmtodit/
H A Dafmtodit.pl6445 my $c2 = $kern2[$i];
6446 if ($nmap{$c1} != 0 && $nmap{$c2} != 0) {
6448 for (my $k = 0; $k < $nmap{$c2}; $k++) {
6452 $map{$c2, $k},
/macosx-10.10.1/ntp-92/ntpd/
H A Drefclock_palisade.h199 static void sendsupercmd (struct packettx *buffer, int c1, int c2);
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dmultilink.c328 char *q, c, c2; local
341 c2 = '.';
343 c2 = ':';
356 c = c2;
/macosx-10.10.1/ruby-106/ruby/
H A Dst.c1502 unsigned int c1, c2; local
1506 c2 = (unsigned char)*s2++;
1507 if (c1 == '\0' || c2 == '\0') {
1509 if (c2 != '\0') return -1;
1513 if ((unsigned int)(c2 - 'A') <= ('Z' - 'A')) c2 += 'a' - 'A';
1514 if (c1 != c2) {
1515 if (c1 > c2)
1526 unsigned int c1, c2; local
1530 c2
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/example/
H A Dxkibitz72 regexp ".*(.)(.)" $spawn_out(slave,name) dummy c1 c2
82 -S$c1$c2$spawn_out(slave,fd) \
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPAttributeList.cpp22 bool nocase_compare(char c1, char c2);
190 bool nocase_compare( char c1, char c2){ argument
191 return toupper(c1) == toupper(c2);

Completed in 389 milliseconds

1234567891011>>