Searched refs:s2 (Results 226 - 250 of 843) sorted by relevance

1234567891011>>

/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Ddestest.c75 DES_key_schedule s1, s2, s3; local
86 DES_set_key_unchecked(&k2, &s2);
88 DES_ecb3_encrypt(&indata, &outdata, &s1, &s2, &s3, 1);
91 DES_ecb3_encrypt(&outdata, &outdata2, &s1, &s2, &s3, 0);
150 DES_key_schedule s1, s2, s3; local
163 DES_set_key_unchecked(&k2, &s2);
167 &s1, &s2, &s3, &ivec_copy, 1);
172 &s1, &s2, &s3, &ivec_copy, 0);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dthcoll.cpp272 UnicodeString s1, s2; local
274 parseChars(s2, tests[i+2]);
276 doTest(&c, s1, s2, expect);
279 int32_t result = c.compare(s1, s2);
285 + " , " + IntlTest::prettify(s2, t2)
290 c.getCollationKey(s2, k2, status);
303 c.getCollationKey(s2, k2, status);
314 + ").compareTo(key(" + IntlTest::prettify(s2, t2)
H A Dtstnorm.cpp851 ref_norm_compare(const UnicodeString &s1, const UnicodeString &s2, uint32_t options, UErrorCode &errorCode) { argument
857 Normalizer::decompose(s2, FALSE, normOptions, r2, errorCode);
863 r2=s2;
878 _norm_compare(const UnicodeString &s1, const UnicodeString &s2, uint32_t options, UErrorCode &errorCode) { argument
882 UNORM_YES==Normalizer::quickCheck(s2, UNORM_FCD, normOptions, errorCode)) {
886 return Normalizer::compare(s1, s2, options, errorCode);
891 ref_case_compare(const UnicodeString &s1, const UnicodeString &s2, uint32_t options) { argument
895 t2=s2;
1110 UnicodeString s1, s2; local
1131 if(!nfcNorm2->getDecomposition(c, s2)) {
[all...]
H A Dsdtfmtts.cpp221 UnicodeString s2; local
222 s2 = pat.toPattern(s2);
223 logln("Extracted pattern is " + s2);
224 if(s2 != p1) {
/macosx-10.10.1/OpenSSL098-52/src/crypto/jpake/
H A Djpake.h76 void JPAKE_STEP2_init(JPAKE_STEP2 *s2);
79 void JPAKE_STEP2_release(JPAKE_STEP2 *s2);
/macosx-10.10.1/apr-32/apr/apr/include/arch/win32/
H A Dapr_dbg_win32_handles.h91 #define CreateProcessA(s1,s2,sd1,sd2,b,d1,s3,s4,pd2,hr) \
93 (HANDLE)(CreateProcessA)(s1,s2,sd1,sd2,b,d1,s3,s4,pd2,hr), \
97 #define CreateProcessW(s1,s2,sd1,sd2,b,d1,s3,s4,pd2,hr) \
99 (HANDLE)(CreateProcessW)(s1,s2,sd1,sd2,b,d1,s3,s4,pd2,hr), \
149 #define RegisterEventSourceA(s1,s2) apr_dbg_rv(RegisterEventSourceA,(s1,s2))
150 #define RegisterEventSourceW(s1,s2) apr_dbg_rv(RegisterEventSourceW,(s1,s2))
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/glob/
H A Dsmatch.c57 static char s2[2] = { ' ', '\0' }; local
68 s2[0] = c2;
70 if ((ret = strcoll (s1, s2)) != 0)
241 # define STREQ(s1, s2) ((wcscmp (s1, s2) == 0))
249 static wchar_t s2[2] = { L' ', L'\0' }; local
255 s2[0] = c2;
257 return (wcscoll (s1, s2));
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dstrverscmp.c25 @deftypefun int strverscmp (const char *@var{s1}, const char *@var{s2})
27 @var{s2}, considering them as holding indices/version numbers. Return
29 function. In fact, if @var{s1} and @var{s2} contain no digits,
90 strverscmp (const char *s1, const char *s2) argument
93 const unsigned char *p2 = (const unsigned char *) s2;
/macosx-10.10.1/emacs-93/emacs/src/
H A Dcoding.h560 #define DECODE_SJIS(s1, s2, c1, c2) \
562 if (s2 >= 0x9F) \
564 c2 = s2 - 0x7E; \
567 c2 = s2 - ((s2 >= 0x7F) ? 0x20 : 0x1F); \
570 #define ENCODE_SJIS(c1, c2, s1, s2) \
574 s2 = c2 + ((c2 >= 0x60) ? 0x20 : 0x1F); \
577 s2 = c2 + 0x7E; \
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dregex.c45 # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
46 __re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dsel.c92 const char *s1, *s2; local
96 s2 = eval_word(context, env, expr->arg2);
98 if (s1 == NULL || s2 == NULL)
103 size_t len2 = strlen(s2);
107 ret = strcmp(s1 + (len1 - len2), s2) == 0;
109 ret = strcmp(s1, s2) == 0;
/macosx-10.10.1/OpenSSH-189/osslshim/tests/
H A Dtest_cipher.c296 char *s, *s2; local
298 hex_encode(t->outdata, t->datasize, &s2);
299 errx(1, "%s: %d encrypt not the same: %s != %s", t->name, i, s, s2);
343 char *s, *s2; local
345 hex_encode(t->outdata, t->datasize, &s2);
346 errx(1, "%s: %d encrypt not the same: %s != %s", t->name, i, s, s2);
/macosx-10.10.1/gpatch-3/patch/
H A Dcommon.h146 #define strEQ(s1,s2) (!strcmp(s1, s2))
147 #define strnEQ(s1,s2,l) (!strncmp(s1, s2, l))
228 # define memcmp(s1, s2, n) bcmp (s1, s2, n)
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dcmp.c256 struct stat s2; local
371 else if (fstat(sffileno(f2), &s2))
373 else if (s1.st_ino == s2.st_ino && s1.st_dev == s2.st_dev && o1 == o2)
376 n = ((flags & CMP_SILENT) && S_ISREG(s1.st_mode) && S_ISREG(s2.st_mode) && (s1.st_size - o1) != (s2.st_size - o2)) ? 1 : cmp(file1, f1, file2, f2, flags, count, differences);
/macosx-10.10.1/remote_cmds-47/rlogin.tproj/
H A Dkcmd.c202 int s2 = getport(&lport), s3; local
205 if (s2 < 0) {
209 listen(s2, 1);
213 (void) close(s2);
217 s3 = accept(s2, (struct sockaddr *)&from, &len);
218 (void) close(s2);
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_pack.rb101 s2 = s+s
103 assert_equal([v,v], s2.unpack(fmt2), "#{s2.dump}.unpack(#{fmt2.dump})")
135 s2 = s+s
137 assert_equal([v,v], s2.unpack(fmt2), "#{s2.dump}.unpack(#{fmt2.dump})")
347 s2 = [513, 65022].pack("S*")
348 assert_equal(s1, s2)
349 assert_equal([513, -514], s2.unpack("s*"))
353 s2
[all...]
/macosx-10.10.1/OpenSSL098-52/src/util/
H A Dmkdef.pl1204 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1205 if ($prev eq $s2) {
1207 print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n";
1209 $prev = $s2; # To warn about duplicates...
1211 ($nn,$ni)=($nums{$s2} =~ /^(.*?)\\(.*)$/);
1213 print OUT "\textern int $s2; /* type unknown */ /* $nn $ni */\n";
1215 print OUT "\textern int $s2(); /* type unknown */ /* $nn $ni */\n";
1306 my $s2 = ($s =~ /^(.*?)(\{[0-9]+\})?$/, $1);
1307 if ($prev eq $s2) {
[all...]
/macosx-10.10.1/groff-38/groff/src/roff/troff/
H A Dreg.cpp428 symbol s2 = get_name(1); local
429 if (!s2.is_null()) {
430 if (!number_reg_dictionary.alias(s1, s2))
431 warning(WARN_REG, "number register `%1' not defined", s2.contents());
441 symbol s2 = get_name(1); local
442 if (!s2.is_null())
443 number_reg_dictionary.rename(s1, s2);
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_cipher.rb43 s2 = @c2.update(@data) + @c2.final
44 assert_equal(s1, s2, "encrypt")
49 assert_equal(@data, @c2.update(s2)+@c2.final, "decrypt")
67 s2 = tmpc.update(@data) + tmpc.final
68 assert_equal(s1, s2, "encrypt dup")
77 s2 = @c1.update(@data) + @c1.final
78 assert_equal(s1, s2, "encrypt reset")
/macosx-10.10.1/Libc-1044.1.2/gdtoa/FreeBSD/
H A Dgdtoa-gdtoa.c157 int rdir, s2, s5, spec_case, try_quick; local
263 s2 = j;
267 s2 = 0;
272 s2 += k;
519 s2 += i;
522 if (m2 > 0 && s2 > 0) {
523 i = m2 < s2 ? m2 : s2;
526 s2 -= i;
553 s2
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dustring.h419 * @param s2 A string to compare.
420 * @return 0 if <code>s1</code> and <code>s2</code> are bitwise equal; a negative
421 * value if <code>s1</code> is bitwise less than <code>s2,</code>; a positive
422 * value if <code>s1</code> is bitwise greater than <code>s2</code>.
427 const UChar *s2);
434 * @param s2 A string to compare.
441 u_strcmpCodePointOrder(const UChar *s1, const UChar *s2);
460 * @param s2 Second source string.
472 const UChar *s2, int32_t length2,
512 * u_strFoldCase(s2, option
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/icu/unicode/
H A Dustring.h414 * @param s2 A string to compare.
415 * @return 0 if <code>s1</code> and <code>s2</code> are bitwise equal; a negative
416 * value if <code>s1</code> is bitwise less than <code>s2,</code>; a positive
417 * value if <code>s1</code> is bitwise greater than <code>s2</code>.
422 const UChar *s2);
429 * @param s2 A string to compare.
436 u_strcmpCodePointOrder(const UChar *s1, const UChar *s2);
455 * @param s2 Second source string.
467 const UChar *s2, int32_t length2,
507 * u_strFoldCase(s2, option
[all...]
/macosx-10.10.1/WTF-7600.1.24/icu/unicode/
H A Dustring.h414 * @param s2 A string to compare.
415 * @return 0 if <code>s1</code> and <code>s2</code> are bitwise equal; a negative
416 * value if <code>s1</code> is bitwise less than <code>s2,</code>; a positive
417 * value if <code>s1</code> is bitwise greater than <code>s2</code>.
422 const UChar *s2);
429 * @param s2 A string to compare.
436 u_strcmpCodePointOrder(const UChar *s1, const UChar *s2);
455 * @param s2 Second source string.
467 const UChar *s2, int32_t length2,
507 * u_strFoldCase(s2, option
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/icu/unicode/
H A Dustring.h414 * @param s2 A string to compare.
415 * @return 0 if <code>s1</code> and <code>s2</code> are bitwise equal; a negative
416 * value if <code>s1</code> is bitwise less than <code>s2,</code>; a positive
417 * value if <code>s1</code> is bitwise greater than <code>s2</code>.
422 const UChar *s2);
429 * @param s2 A string to compare.
436 u_strcmpCodePointOrder(const UChar *s1, const UChar *s2);
455 * @param s2 Second source string.
467 const UChar *s2, int32_t length2,
507 * u_strFoldCase(s2, option
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dschemaparse.c101 dscompare(const char *s1, const char *s2, char delim) argument
104 while (*s1++ == *s2++)
107 --s2;
108 if (!*s1 && (!*s2 || *s2 == delim))

Completed in 551 milliseconds

1234567891011>>