Searched refs:c2 (Results 76 - 100 of 664) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/ctext/
H A Dctext_test_ws.tcl6 ctext::addHighlightClass {.t blah} c2 red [list bozo bull bongo]
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dcombo.tcl50 ttk::labelframe $w.c2 -text Disabled
51 ttk::combobox $w.c2.c -textvariable secondValue -state disabled
61 pack $w.c1 $w.c2 $w.c3 -side top -pady 5 -padx 10
63 pack $w.c2.c -pady 5 -padx 10
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dshift_jisx0213.h69 unsigned char c2 = s[1]; local
70 if ((c2 >= 0x40 && c2 <= 0x7e) || (c2 >= 0x80 && c2 <= 0xfc)) {
78 if (c2 < 0x80)
79 c2 -= 0x40;
81 c2 -= 0x41;
82 /* Now 0 <= c <= 0x3b, 0 <= c2 <= 0xbb. */
84 if (c2 >
[all...]
H A Djohab.h26 Conversion between JOHAB codes (s1,s2) and KSX1001 codes (c1,c2):
27 Example. (s1,s2) = 0xD931, (c1,c2) = 0x2121.
28 (s1,s2) = 0xDEF1, (c1,c2) = 0x2C71.
29 (s1,s2) = 0xE031, (c1,c2) = 0x4A21.
30 (s1,s2) = 0xF9FE, (c1,c2) = 0x7D7E.
34 0x21 <= c2 <= 0x7E.
37 = 94*(c1-0x21)+(c2-0x21)
38 Conversion (s1,s2) -> (c1,c2):
42 c2 := (t2 < 0x5E ? t2 : t2-0x5E) + 0x21
43 Conversion (c1,c2)
121 unsigned char c1, c2; local
[all...]
H A Dbig5_2003.h195 unsigned char c2 = s[1]; local
196 if ((c2 >= 0x40 && c2 < 0x7f) || (c2 >= 0xa1 && c2 < 0xff)) {
199 unsigned int i = 157 * (c - 0xa1) + (c2 - (c2 >= 0xa1 ? 0x62 : 0x40));
206 if (!((c == 0xc6 && c2 >= 0xa1) || c == 0xc7)) {
207 if (!(c == 0xc2 && c2 == 0x55)) {
212 if (c2 >
437 unsigned int c2 = i % 157; local
[all...]
/macosx-10.10.1/gnudiff-19/diffutils/src/
H A Dutil.c328 register unsigned char c2 = *t2++;
331 if (c1 != c2)
338 while (ISSPACE (c2) && c2 != '\n') c2 = *t2++;
360 if (ISSPACE (c2))
362 while (c2 != '\n')
364 c2 = *t2++;
365 if (! ISSPACE (c2))
368 c2
324 register unsigned char c2 = *t2++; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dustrcase.cpp134 UChar32 c, c2 = 0; local
148 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff)) {
150 dest[destIndex++]=(UChar)c2;
338 UChar32 c, c2 = 0; local
345 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff)) {
347 dest[destIndex++]=(UChar)c2;
493 UChar32 c1, c2, cp1, cp2; local
522 c1=c2
[all...]
H A Dcstring.c245 unsigned char c1, c2; local
249 c2=(unsigned char)*str2;
251 if(c2==0) {
256 } else if(c2==0) {
260 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
284 unsigned char c1, c2; local
288 c2=(unsigned char)*str2;
290 if(c2==0) {
295 } else if(c2==0) {
299 rc=(int)(unsigned char)uprv_tolower(c1)-(int)(unsigned char)uprv_tolower(c2);
[all...]
/macosx-10.10.1/libiconv-42/libiconv/srclib/
H A Drelocwrapper.c87 unsigned char c2 = *s2; local
89 != (c2 >= 'A' && c2 <= 'Z' ? c2 - 'A' + 'a' : c2))
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djquant2.c320 int c0,c1,c2; local
333 for (c2 = c2min; c2 <= c2max; c2++)
344 for (c2 = c2min; c2 <= c2max; c2++)
355 for (c2 = c2min; c2 <= c2max; c2
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/Heimdal-398.1.2/lib/hx509/
H A Dtest_name.c296 compare_subject(hx509_cert c1, hx509_cert c2, int *l) argument
303 ret = hx509_cert_get_subject(c2, &n2);
317 hx509_cert c1, c2, c3; local
325 ret = hx509_cert_init_data(context, certdata2, sizeof(certdata2) - 1, &c2);
333 ret = compare_subject(c1, c2, &l1);
337 ret = compare_subject(c2, c3, &l3);
346 hx509_cert_free(c2);
/macosx-10.10.1/ruby-106/ruby/test/ruby/enc/
H A Dtest_iso_8859.rb13 c2 = (c + 0x20).chr("ENCODING")
14 assert_match(/^(#{ c1 })\1$/i, c2 + c1)
15 assert_match(/^(#{ c2 })\1$/i, c1 + c2)
16 assert_match(/^[#{ c1 }]+$/i, c2 + c1)
17 assert_match(/^[#{ c2 }]+$/i, c1 + c2)
39 c2 = (c + 0x10).chr("iso8859-3")
40 assert_match(/^(#{ c1 })\1$/i, c2 + c1)
41 assert_match(/^(#{ c2 })\
[all...]
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_cipher.rb27 @c2 = OpenSSL::Cipher::DES.new(:EDE3, "CBC")
36 @c1 = @c2 = nil
41 @c2.encrypt.pkcs5_keyivgen(@key, @iv)
43 s2 = @c2.update(@data) + @c2.final
47 @c2.decrypt.pkcs5_keyivgen(@key, @iv)
49 assert_equal(@data, @c2.update(s2)+@c2.final, "decrypt")
54 assert_equal("DES-EDE3-CBC", @c2.name, "name")
119 c2
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/demos/tcl/
H A DSection.tcl25 pack [ canvas .c2 -height 50 -width 400 -closeenough 5]
141 .c2 create spectrogram 0 0 -sound s -height 50 -width 400 -tags s
142 .c2 create line 5 0 5 50 -tags m1
143 .c2 create line 395 0 395 50 -tags m2
145 .c2 bind m1 <B1-Motion> {
146 .c2 coords m1 [.c2 canvasx %x] 0 [.c2 canvasx %x] 100
147 .c itemconf sect -start [expr int(16000 * [.c2 canvasx %x] / 600)]
149 .c2 bin
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dcharset.c129 #define SPLIT_MULTIBYTE_SEQ(str, length, bytes, charset, c1, c2) \
145 (charset) = (c1), (c1) = (str)[1] & 0x7F, (c2) = (str)[2] & 0x7F; \
150 (charset) = (str)[1], (c1) = (str)[2] & 0x7F, (c2) = (str)[3] & 0x7F; \
157 #define CHAR_COMPONENTS_VALID_P(charset, c1, c2) \
167 && (c2) >= 0x20 && (c2) <= 0x7F)))))
233 int charset, c1, c2;
235 SPLIT_CHAR (c, charset, c1, c2);
246 if ((c1 > 0 && c1 < 32) || (c2 > 0 && c2 < 3
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...]
H A Dcasefiddle.c199 int c2;
200 c = c2 = FETCH_BYTE (i);
214 if (c != c2)
225 int c2;
231 c2 = c;
233 c2 = DOWNCASE (c);
236 c2 = UPCASE1 (c);
237 if (c != c2)
244 if (c < 0400 && c2 < 0400)
245 FETCH_BYTE (i) = c2;
197 int c2; local
223 int c2; local
[all...]
H A Dcategory.h125 #define WORD_BOUNDARY_P(c1, c2) \
126 (!(SINGLE_BYTE_CHAR_P (c1) && SINGLE_BYTE_CHAR_P (c2)) \
127 && word_boundary_p (c1, c2))
/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_unistr.c127 u16 c1, c2; local
134 c2 = le16_to_cpu(*name2++);
138 if (c2 < upcase_len)
139 c2 = le16_to_cpu(upcase[c2]);
143 if (c1 < c2)
145 if (c1 > c2)
181 u16 c1, c2; local
186 c2 = le16_to_cpu(s2[i]);
187 if (c1 < c2)
219 u16 c1, c2; local
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/tcllib/
H A Dplotdemos2.rb9 c2 = TkCanvas.new(:background=>'white', :width=>400, :height=>200)
10 Tk.pack(c1,c2, :fill=>:both, :side=>:top)
37 s = Tk::Tcllib::Plotchart::IsometricPlot.new(c2, [0.0, 100.0], [0.0, 200.0],
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_require.rb111 c2 = new_spec("c", "2", nil, "lib/d.rb")
113 install_specs a1, b1, b2, c1, c2
135 c2 = new_spec("c", "2", nil, "lib/d.rb")
137 install_specs a1, b1, b2, c1, c2, x1, x2
159 c2 = new_spec "c", "2", nil, "lib/d.rb"
162 install_specs a1, b1, b2, c1, c2, c3
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/examples/plotchart/
H A Dplotdemos4.tcl16 canvas .t.c2 -width 300 -height 200 -bg white
20 pack .t.c2 .t.c3 .t.c4 -fill both
40 foreach {style canvas} {lines .t.c2 cumulative .t.c3 filled .t.c4} {
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dxref_test_case.rb35 @c2 = @xref_data.find_module_named 'C2'
36 @c2_a = @c2.method_list.last
37 @c2_b = @c2.method_list.first
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleInput.java387 int c2 = readFast();
388 if ((c1 | c2) < 0) {
391 return ((c1 << 8) | c2);
410 long c2 = readFast();
413 if ((c1 | c2 | c3 | c4) < 0) {
416 return ((c1 << 24) | (c2 << 16) | (c3 << 8) | c4);
427 long c2 = readFast();
434 if ((c1 | c2 | c3 | c4 | c5 | c6 | c7 | c8) < 0) {
437 return ((c1 << 56) | (c2 << 48) | (c3 << 40) | (c4 << 32) |
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-meta/
H A Ddncache.c53 const void *c2 )
56 metadncacheentry_t *cc2 = ( metadncacheentry_t * )c2;
73 void *c2 )
76 metadncacheentry_t *cc2 = ( metadncacheentry_t * )c2;
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/include/idn/
H A Dunicode.h133 * Do canonical composition to the character sequence 'c1' and 'c2', put the
145 unsigned long c1, unsigned long c2, unsigned long *compp);

Completed in 371 milliseconds

1234567891011>>