Searched refs:c2 (Results 351 - 375 of 664) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Ducase.cpp316 int32_t c1, c2; local
321 c2=*t++;
322 if(c2==0) {
325 c1-=c2;
H A Ducnv2022.cpp1511 _2022ToSJIS(uint8_t c1, uint8_t c2, char bytes[2]) { argument
1514 if(c2 <= 0x5f) {
1515 c2 += 0x1f;
1516 } else if(c2 <= 0x7e) {
1517 c2 += 0x20;
1519 c2 = 0; /* invalid */
1522 if((uint8_t)(c2-0x21) <= ((0x7e)-0x21)) {
1523 c2 += 0x7e;
1525 c2 = 0; /* invalid */
1537 bytes[1] = (char)c2;
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dutf16tst.c352 UChar32 c, c2; local
384 U16_GET(input, 0, j, -1, c2);
385 if(c2!=c) {
386 log_err("U16_NEXT(from %d)=U+%04x != U+%04x=U16_GET(at %d)\n", i0, c, c2, j);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Didnaref.cpp76 UChar c1,c2; local
86 c2 = s2[i];
89 if(c1!=c2) {
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
H A Dconvtest.cpp508 UChar c2; local
529 for(c2=0xdc00; c2<=0xdfff; ++c2) {
531 *s++=c2;
/macosx-10.10.1/JavaScriptCore-7600.1.17/disassembler/udis86/
H A Dudis86_syn-att.c234 else if (u->c2)
H A Dudis86_types.h209 uint8_t c2; member in struct:ud
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Ddistproc.c245 ldap_distproc_uri_cmp( const void *c1, const void *c2 )
248 const ldapinfo_t *li2 = (const ldapinfo_t *)c2;
263 ldap_distproc_uri_dup( void *c1, void *c2 )
266 ldapinfo_t *li2 = (ldapinfo_t *)c2;
H A Dbind.c168 ldap_back_conndnlc_cmp( const void *c1, const void *c2 );
406 ldap_back_conndn_cmp( const void *c1, const void *c2 )
409 const ldapconn_t *lc2 = (const ldapconn_t *)c2;
432 ldap_back_conndnlc_cmp( const void *c1, const void *c2 )
435 const ldapconn_t *lc2 = (const ldapconn_t *)c2;
460 ldap_back_conn_cmp( const void *c1, const void *c2 )
463 const ldapconn_t *lc2 = (const ldapconn_t *)c2;
478 ldap_back_conndn_dup( void *c1, void *c2 )
481 ldapconn_t *lc2 = (ldapconn_t *)c2;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-meta/
H A Dmap.c65 mapping_cmp ( const void *c1, const void *c2 )
68 struct ldapmapping *map2 = (struct ldapmapping *)c2;
75 mapping_dup ( void *c1, void *c2 )
78 struct ldapmapping *map2 = (struct ldapmapping *)c2;
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter7/
H A Dparser.ml130 | Some (Token.Kwd c2) ->
133 let next_prec = precedence c2 in
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsoutlineview.py7 def outlineView_shouldReorderColumn_toColumn_(self, v, c1, c2): return 1
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_nsoutlineview.py12 def outlineView_shouldReorderColumn_toColumn_(self, v, c1, c2): return 1
/macosx-10.10.1/swig-12/Source/DOH/
H A Dbase.c193 int c1, c2; local
197 c2 = DohCheck(b2);
199 if (!c1 || !c2) {
206 return strcmp((char *) (c1 ? RawData(b1) : (void *) obj1), (char *) (c2 ? RawData(b2) : (void *) obj2));
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dpngpriv.h192 #define PNG_COLOR_DIST(c1, c2) (abs((int)((c1).red) - (int)((c2).red)) + \
193 abs((int)((c1).green) - (int)((c2).green)) + \
194 abs((int)((c1).blue) - (int)((c2).blue)))
/macosx-10.10.1/tidy-15.15/tidy/console/
H A Dtidy.c64 const char *c1, const char *c2 )
66 const char *pc1=c1, *pc2=c2;
83 const char *c1, const char *c2, const char *c3 )
85 const char *pc1=c1, *pc2=c2, *pc3=c3;
82 print3Columns( const char* fmt, uint l1, uint l2, uint l3, const char *c1, const char *c2, const char *c3 ) argument
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dcp932ext.h154 unsigned char c2 = s[1]; local
155 if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0x80 && c2 < 0xfd)) {
156 unsigned int i = 188 * (c1 - (c1 >= 0xe0 ? 0xc1 : 0x81)) + (c2 - (c2 >= 0x80 ? 0x41 : 0x40));
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_class_module.rb146 @c2.classes_hash['C2'] = @c2
148 assert_nil @c2.find_class_named('C1')
567 c2 = RDoc::NormalClass.new 'Klass'
569 c2.merge c1
572 assert_equal 'Parent', c2.parent_name, 'merged parent name'
575 assert c2.current_section, 'merged current_section'
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Ddebug.c3241 struct debug_class_type *c1, *c2;
3244 c2 = t2->u.kclass;
3246 if ((c1->fields == NULL) != (c2->fields == NULL)
3247 || (c1->baseclasses == NULL) != (c2->baseclasses == NULL)
3248 || (c1->methods == NULL) != (c2->methods == NULL)
3249 || (c1->vptrbase == NULL) != (c2->vptrbase == NULL))
3256 for (pf1 = c1->fields, pf2 = c2->fields;
3297 if (! debug_type_samep (info, c1->vptrbase, c2->vptrbase))
3305 for (pb1 = c1->baseclasses, pb2 = c2->baseclasses;
3327 for (pm1 = c1->methods, pm2 = c2
3238 struct debug_class_type *c1, *c2; local
[all...]
/macosx-10.10.1/apr-32/apr-util/apr-util/xml/expat/lib/
H A Dxmltok.c914 char c2 = *s2++; local
917 if (ASCII_a <= c2 && c2 <= ASCII_z)
918 c2 += ASCII_A - ASCII_a;
919 if (c1 != c2)
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dcomplete.c1047 register int i, c1, c2, si; local
1079 (c2 = _rl_to_lower(match_list[i + 1][si]));
1095 if (c1 != c2)
1102 (c2 = match_list[i + 1][si]);
1116 if (c1 != c2)
/macosx-10.10.1/expat-12/expat/lib/
H A Dxmltok.c927 char c2 = *s2++; local
930 if (ASCII_a <= c2 && c2 <= ASCII_z)
931 c2 += ASCII_A - ASCII_a;
932 if (c1 != c2)
/macosx-10.10.1/procmail-14/procmail/src/
H A Dautoconf1209 { unsigned c1,c2,i;time_t t;
1211 for(i=c1=c2=0;i<BENCHSIZE-1;i++,c1++,c2++)
1215 if(c2==51)
1216 c2=0,haystack[i]='\n';
/macosx-10.10.1/screen-22/screen/
H A Dlayer.c252 struct mchar *c2, cc; local
263 c2 = c;
268 c2 = &mchar_blank;
276 c2 = &cc;
290 InsChar(RECODE_MCHAR(c2), xs2, xe2, y2, mloff(rol, -vp->v_xoff));
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/expat/
H A Dxmltok.c927 char c2 = *s2++; local
930 if (ASCII_a <= c2 && c2 <= ASCII_z)
931 c2 += ASCII_A - ASCII_a;
932 if (c1 != c2)

Completed in 262 milliseconds

<<11121314151617181920>>