Searched refs:c1 (Results 51 - 75 of 644) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/test/ruby/enc/
H A Dtest_koi8.rb6 c1 = c.chr("ENCODING")
8 assert_match(/^(#{ c1 })\1$/i, c2 + c1)
9 assert_match(/^(#{ c2 })\1$/i, c1 + c2)
10 assert_match(/^[#{ c1 }]+$/i, c2 + c1)
11 assert_match(/^[#{ c2 }]+$/i, c1 + c2)
H A Dtest_windows_1251.rb8 c1 = c.chr("windows-1251")
10 assert_match(/^(#{ c1 })\1$/i, c2 + c1)
11 assert_match(/^(#{ c2 })\1$/i, c1 + c2)
12 assert_match(/^[#{ c1 }]+$/i, c2 + c1)
13 assert_match(/^[#{ c2 }]+$/i, c1 + c2)
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dcombo.tcl48 ttk::labelframe $w.c1 -text "Fully Editable"
49 ttk::combobox $w.c1.c -textvariable firstValue
55 bind $w.c1.c <Return> {
61 pack $w.c1 $w.c2 $w.c3 -side top -pady 5 -padx 10
62 pack $w.c1.c -pady 5 -padx 10
/macosx-10.10.1/emacs-93/emacs/src/
H A Dcharset.c129 #define SPLIT_MULTIBYTE_SEQ(str, length, bytes, charset, c1, c2) \
131 (c1) = *(str); \
132 (bytes) = BYTES_BY_CHAR_HEAD (c1); \
134 (charset) = ASCII_BYTE_P (c1) ? CHARSET_ASCII : CHARSET_8_BIT_GRAPHIC; \
137 if ((c1) == LEADING_CODE_8_BIT_CONTROL) \
138 (charset) = CHARSET_8_BIT_CONTROL, (c1) = (str)[1] - 0x20; \
140 (charset) = (c1), (c1) = (str)[1] & 0x7F; \
144 if ((c1) < LEADING_CODE_PRIVATE_11) \
145 (charset) = (c1), (c
232 int charset, c1, c2; local
295 int c, bytes, charset, c1, c2; local
346 int charset, c1, c2; local
843 int bytes, charset, c1, c2; local
976 int charset_id, c1, c2; variable
1043 int c, charset, c1, c2; variable
1113 int charset, c1, c2; local
[all...]
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dcp936.h108 unsigned int c1 = i / 94; local
110 r[0] = c1 + (c1 < 6 ? 0xaa : 0xf2);
115 unsigned int c1 = i / 96; local
117 r[0] = c1 + 0xa1;
H A Dgb18030.h213 unsigned char c1 = s[0]; local
214 if ((c1 >= 0xaa && c1 <= 0xaf) || (c1 >= 0xf8 && c1 <= 0xfe)) {
218 *pwc = 0xe000 + 94 * (c1 >= 0xf8 ? c1 - 0xf2 : c1 - 0xaa) + (c2 - 0xa1);
223 } else if (c1 >= 0xa1 && c1 <
237 unsigned char c1 = s[0]; local
[all...]
H A Dcp932.h68 Conversion between SJIS codes (s1,s2) and JISX0208 codes (c1,c2):
69 Example. (s1,s2) = 0x8140, (c1,c2) = 0x2121.
72 0x21 <= c1 <= 0x74, 0x21 <= c2 <= 0x7E.
75 = 94*(c1-0x21)+(c2-0x21)
76 Conversion (s1,s2) -> (c1,c2):
79 c1 := 2*t1 + (t2 < 0x5E ? 0 : 1) + 0x21
81 Conversion (c1,c2) -> (s1,s2):
82 t1 := (c1 - 0x21) >> 1
83 t2 := ((c1 - 0x21) & 1) * 0x5E + (c2 - 0x21)
163 unsigned char c1, c local
192 unsigned char c1, c2; local
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_dependency_resolver.rb71 c1 = util_spec "c", "1"
76 s = set(a1, b1, c1)
80 assert_set [a1, b1, c1], res.resolve
87 c1 = util_spec "c", "1"
93 s = set(a1, b1, c1, c2)
97 assert_set [a1, b1, c1], res.resolve
115 c1 = util_spec "c", "1"
121 s = set(a1, b1, d3, d4, c1, c2)
125 assert_set [a1, b1, c1, d4], res.resolve
140 c1
[all...]
H A Dtest_require.rb110 c1 = new_spec "c", "1", nil, "lib/d.rb"
113 install_specs a1, b1, b2, c1, c2
116 c1.activate
134 c1 = new_spec "c", "1", nil, "lib/d.rb"
137 install_specs a1, b1, b2, c1, c2, x1, x2
140 c1.activate
158 c1 = new_spec "c", "1", nil, "lib/d.rb"
162 install_specs a1, b1, b2, c1, c2, c3
165 c1.activate
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dtest_name.c296 compare_subject(hx509_cert c1, hx509_cert c2, int *l) argument
301 ret = hx509_cert_get_subject(c1, &n1);
317 hx509_cert c1, c2, c3; local
322 ret = hx509_cert_init_data(context, certdata1, sizeof(certdata1) - 1, &c1);
331 ret = compare_subject(c1, c1, &l0);
333 ret = compare_subject(c1, c2, &l1);
335 ret = compare_subject(c1, c3, &l2);
345 hx509_cert_free(c1);
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/asm/
H A Dsparcv8.S568 umul a_0,b_0,c_1 !=!mul_add_c(a[0],b[0],c1,c2,c3);
571 st c_1,rp(0) !r[0]=c1;
573 umul a_0,b_1,t_1 !=!mul_add_c(a[0],b[1],c2,c3,c1);
580 umul a_1,b_0,t_1 !mul_add_c(a[1],b[0],c2,c3,c1);
587 umul a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
593 umul a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
599 umul a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
606 umul a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
611 umul a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
617 umul a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c
[all...]
H A Dsparcv8plus.S667 mulx a_0,b_0,t_1 !mul_add_c(a[0],b[0],c1,c2,c3);
669 stuw t_1,rp(0) !=!r[0]=c1;
672 mulx a_0,b_1,t_1 !mul_add_c(a[0],b[1],c2,c3,c1);
678 mulx a_1,b_0,t_1 !=!mul_add_c(a[1],b[0],c2,c3,c1);
686 mulx a_2,b_0,t_1 !mul_add_c(a[2],b[0],c3,c1,c2);
692 mulx a_1,b_1,t_1 !mul_add_c(a[1],b[1],c3,c1,c2);
697 mulx a_0,b_2,t_1 !mul_add_c(a[0],b[2],c3,c1,c2);
705 mulx a_0,b_3,t_1 !mul_add_c(a[0],b[3],c1,c2,c3);
710 mulx a_1,b_2,t_1 !=!mul_add_c(a[1],b[2],c1,c2,c3);
715 mulx a_2,b_1,t_1 !mul_add_c(a[2],b[1],c1,c
[all...]
/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_unistr.c127 u16 c1, c2; local
133 c1 = le16_to_cpu(*name1++);
136 if (c1 < upcase_len)
137 c1 = le16_to_cpu(upcase[c1]);
141 if (c1 < 64 && ntfs_legal_ansi_char_array[c1] & 8)
143 if (c1 < c2)
145 if (c1 > c2)
158 c1
181 u16 c1, c2; local
219 u16 c1, c2; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/apps/actiweb/
H A DCounter2.xotcl25 ### Create two counter instances c1/c2
26 Counter c1
61 WebCounter web-c1 -counter c1
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/glob/
H A Dsmatch.c53 static int rangecmp (c1, c2)
54 int c1, c2;
61 c1 &= 0xFF;
64 if (c1 == c2)
67 s1[0] = c1;
72 return (c1 - c2);
75 # define rangecmp(c1, c2) ((int)(c1) - (int)(c2))
80 collequiv (c1, c2)
81 int c1, c
[all...]
/macosx-10.10.1/gnudiff-19/diffutils/src/
H A Dutil.c327 register unsigned char c1 = *t1++;
331 if (c1 != c2)
337 while (ISSPACE (c1) && c1 != '\n') c1 = *t1++;
345 if (ISSPACE (c1))
347 while (c1 != '\n')
349 c1 = *t1++;
350 if (! ISSPACE (c1))
353 c1
323 register unsigned char c1 = *t1++; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/telnet/
H A Ddefines.h39 #define NET2ADD(c1,c2) { NETADD(c1); NETADD(c2); }
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A DMKcaptab.awk71 c1 = add_string($2);
74 aliases[num_aliases] = sprintf("\t{%5d, %5d, %5d},\t /* %s */", c1, c2, c3, $5);
H A Dcaptoinfo.c591 save_tc_char(char *bufptr, int c1) argument
595 if (is7bits(c1) && isprint(c1)) {
596 if (c1 == ':' || c1 == '\\')
598 bufptr = save_char(bufptr, c1);
600 if (c1 == (c1 & 0x1f)) /* iscntrl() returns T on 255 */
601 (void) strcpy(temp, unctrl((chtype) c1));
603 (void) sprintf(temp, "\\%03o", c1);
610 save_tc_inequality(char *bufptr, int c1, int c2) argument
666 int c1, c2; local
[all...]
/macosx-10.10.1/remote_cmds-47/telnet.tproj/
H A Ddefines.h40 #define NET2ADD(c1,c2) { NETADD(c1); NETADD(c2); }
/macosx-10.10.1/uucp-11/uucp/contrib/
H A Duuxconv41 tsite=`echo $site | cut -c1-5`
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen.sh78 opinst) extrafile_args="-Q tmp-opinst.c1 $extrafile_args" ;;
86 rm -f tmp-desc.c tmp-desc.c1
88 rm -f tmp-opc.c tmp-opc.c1
89 rm -f tmp-opinst.c tmp-opinst.c1
104 -C tmp-desc.c1 \
106 -P tmp-opc.c1 \
117 -e "s/@prefix@/${prefix}/" < tmp-desc.c1 > tmp-desc.c
124 -e "s/@prefix@/${prefix}/" < tmp-opc.c1 > tmp-opc.c
130 -e "s/@prefix@/${prefix}/" < tmp-opinst.c1 >tmp-opinst.c
151 rm -f tmp-desc.h1 tmp-desc.c1
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Object/
H A Dregress-137000.js121 var c1 = new Child('child1');
122 actual = c1.prop;
142 c1 = new ChildX('child1');
143 actual = c1.id;
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djquant2.c320 int c0,c1,c2; local
331 for (c1 = c1min; c1 <= c1max; c1++) {
332 histp = & histogram[c0][c1][c2min];
342 for (c1 = c1min; c1 <= c1max; c1++) {
343 histp = & histogram[c0][c1][c2min];
352 for (c1
429 int c0,c1,c2,cmax; local
507 int c0,c1,c2; local
855 fill_inverse_cmap(j_decompress_ptr cinfo, int c0, int c1, int c2) argument
923 register int c0, c1, c2; local
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_any_method.rb42 assert_equal 'C1::m', @c1.method_list.first.full_name
113 class_method = Marshal.load Marshal.dump(@c1.method_list.first)
122 instance_method = Marshal.load Marshal.dump(@c1.method_list.last)
185 m.parent = @c1
194 m.parent = @c1
208 m.parent = @c1
217 m.parent = @c1
226 m.parent = @c1
236 m.parent = @c1
256 m.parent = @c1
[all...]

Completed in 282 milliseconds

1234567891011>>