Searched refs:s2 (Results 451 - 475 of 849) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/cxxfilt-11/cxxfilt/intl/
H A Ddcigettext.c258 const struct known_translation_t *s2; local
262 s2 = (const struct known_translation_t *) p2;
264 result = strcmp (s1->msgid, s2->msgid);
267 result = strcmp (s1->domainname, s2->domainname);
272 result = s1->category - s2->category;
/macosx-10.9.5/libpcap-42/libpcap/
H A Dpcap-sita.c465 static int if_sort(char *s1, char *s2) { argument
478 if ((s2_p2 = strchr(s2, '_'))) { /* now do the same for the second string */
479 s2_p1_len = s2_p2 - s2;
482 s2_p1_len = strlen(s2);
486 strncpy(str2, s2, (s2_p1_len > sizeof(str2)) ? s2_p1_len : sizeof(str2)); *(str2 + s2_p1_len) = 0;
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_io.rb545 s1, s2 = UNIXSocket.pair
547 yield s1, s2
550 s2.close unless s2.closed?
559 with_socketpair {|s1, s2|
563 assert_equal(content, s2.read)
573 with_socketpair {|s1, s2|
574 t = Thread.new { s2.read }
589 with_socketpair {|s1, s2|
590 t = Thread.new { s2
[all...]
/macosx-10.9.5/ruby-104/ruby/
H A Dutil.c1964 const char *s2; local
2079 s2 = s;
2081 if (*++s2 != *s1) {
2086 s = s2;
3130 j, j1, k, k0, k_check, leftright, m2, m5, s2, s5,
3272 s2 = j;
3276 s2 = 0;
3281 s2 += k;
3504 s2 += i;
3507 if (m2 > 0 && s2 >
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/calc/
H A Dcalc-arith.el486 (s2 (math-possible-signs (nth 2 a))))
487 (if (eq (car a) '-) (setq s2 (math-neg-signs s2)))
488 (cond ((eq s1 s2) s1)
489 ((eq s1 2) s2)
490 ((eq s2 2) s1)
492 ((>= s2 8) 15)
493 ((and (eq s1 4) (eq s2 6)) 4)
494 ((and (eq s2 4) (eq s1 6)) 4)
495 ((and (eq s1 1) (eq s2
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclExecute.c2658 char *s1, *s2;
2662 s2 = Tcl_GetStringFromObj(value2Ptr, &s2len);
2669 iResult = (strcmp(s1, s2) != 0);
2672 iResult = (strcmp(s1, s2) == 0);
2708 CONST char *s1, *s2;
2727 s2 = (char *) Tcl_GetByteArrayFromObj(value2Ptr, &s2len);
2728 iResult = memcmp(s1, s2,
2755 s2 = Tcl_GetStringFromObj(value2Ptr, &s2len);
2756 iResult = TclpUtfNcmp2(s1, s2,
2911 char *s2
2648 char *s1, *s2; local
2698 CONST char *s1, *s2; local
2901 char *s2 = NULL; /* Init. avoids compiler warning. */ local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dnormconf.cpp59 void NormalizerConformanceTest::compare(const UnicodeString& s1, const UnicodeString& s2){ argument
63 if(Normalizer::compare(s1,s2,U_FOLD_CASE_DEFAULT,status)!=0){
64 errln("Normalizer::compare() failed for s1: " + prettify(s1) + " s2: " +prettify(s2));
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/dicttrieperf/
H A Ddicttrieperf.cpp186 static int32_t strcmpAfterPrefix(const char *s1, const char *s2, int32_t &prefixLength) { argument
189 s2+=pl;
193 int32_t c2=(uint8_t)*s2++;
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSCJSValueInlines.h713 bool s2 = v2.isString(); local
714 if (s1 && s2)
753 if (s1 || s2) {
/macosx-10.9.5/OpenSSH-186/osslshim/tests/
H A Dtest_cryptor.c102 char *s1, *s2;
106 hex_encode(ct[i]->value, blocksize, &s2);
108 printf("vector %d encrypt not the same: %s != %s\n", (int)i, s1, s2);
124 char *s1, *s2;
128 hex_encode(pt[i]->value, blocksize, &s2);
130 printf("vector %d decrypt not the same: %s != %s\n", (int)i, s1, s2);
590 char *s1, *s2;
594 hex_encode(ct[i]->value, blocksize, &s2);
596 printf("vector %d encrypt not the same: %s != %s\n", (int)i, s1, s2);
612 char *s1, *s2;
[all...]
/macosx-10.9.5/groff-38/groff/src/roff/groff/
H A Dgroff.cpp529 void possible_command::set_name(const char *s1, const char *s2) argument
532 name = new char[strlen(s1) + strlen(s2) + 1];
534 strcat(name, s2);
/macosx-10.9.5/less-23/less/
H A Dregexp.c1229 * of characters not from s2
1233 strcspn(s1, s2)
1235 char *s2;
1243 for (scan2 = s2; *scan2 != '\0';) /* ++ moved down. */
/macosx-10.9.5/sudo-72/src/
H A Dglob.c424 g_strncmp(s1, s2, n)
426 const char *s2;
432 rv = *(Char *)s1 - *(const unsigned char *)s2++;
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/win/
H A Dnmakehlp.c505 char s1[51], s2[51], s3[51];
520 r = fscanf(f, "%50s %50s", s2, s3);
529 if (!strcmp(s2, string)) {
499 char s1[51], s2[51], s3[51]; local
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/win/
H A Dnmakehlp.c505 char s1[51], s2[51], s3[51];
520 r = fscanf(f, "%50s %50s", s2, s3);
529 if (!strcmp(s2, string)) {
499 char s1[51], s2[51], s3[51]; local
/macosx-10.9.5/tcl-102/tcl_ext/thread/thread/win/vc/
H A Dnmakehlp.c505 char s1[51], s2[51], s3[51];
520 r = fscanf(f, "%50s %50s", s2, s3);
529 if (!strcmp(s2, string)) {
499 char s1[51], s2[51], s3[51]; local
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/demos/
H A Ddemo.tcl371 set S [$T style create s2]
475 $T item style set $I2 C0 s2
1329 $t style create s2
1330 $t style elements s2 {e3 e1 e2}
1331 $t style layout s2 e1 -padx {0 4}
1332 $t style layout s2 e3 -union [list e1 e2] -ipadx 1 -ipady {0 1}
1352 $t item style set $item2 C0 s2
1407 $t style create s2
1408 $t style elements s2 {e3 e1 e2}
1409 $t style layout s2 e
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tls/tls/win/
H A Dnmakehlp.c505 char s1[51], s2[51], s3[51];
520 r = fscanf(f, "%50s %50s", s2, s3);
529 if (!strcmp(s2, string)) {
499 char s1[51], s2[51], s3[51]; local
/macosx-10.9.5/text_cmds-87/join/
H A Djoin.c418 mbscoll(const char *s1, const char *s2) argument
424 return (strcoll(s1, s2));
425 if ((w1 = towcs(s1)) == NULL || (w2 = towcs(s2)) == NULL)
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Didnatest.c52 const UChar *s2, int32_t s2Len,
519 const UChar* s2, int32_t s2Len,
524 int32_t retVal = func(s1,-1,s2,-1,UIDNA_DEFAULT,&status);
534 retVal = func(s1,-1,s2,-1,UIDNA_ALLOW_UNASSIGNED,&status);
544 retVal = func(s1,s1Len,s2,s2Len,UIDNA_DEFAULT,&status);
554 retVal = func(s1,s1Len,s2,s2Len,UIDNA_ALLOW_UNASSIGNED,&status);
518 testCompareWithSrc(const UChar* s1, int32_t s1Len, const UChar* s2, int32_t s2Len, const char* testName, CompareFunc func, UBool isEqual) argument
/macosx-10.9.5/screen-22/screen/
H A Dsocket.c767 ttycmp(s1, s2)
768 char *s1, *s2;
771 if (strlen(s2) > 5) s2 += strlen(s2) - 5;
772 return strcmp(s1, s2);
/macosx-10.9.5/CPANInternal-140/PathTools/
H A Dppport.h3178 # define memNE(s1,s2,l) (memcmp(s1,s2,l))
3182 # define memEQ(s1,s2,l) (!memcmp(s1,s2,l))
3187 # define memNE(s1,s2,l) (bcmp(s1,s2,l))
3191 # define memEQ(s1,s2,l) (!bcmp(s1,s2,l))
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage/
H A Dppport.h3115 # define memNE(s1,s2,l) (memcmp(s1,s2,l))
3119 # define memEQ(s1,s2,l) (!memcmp(s1,s2,l))
3124 # define memNE(s1,s2,l) (bcmp(s1,s2,l))
3128 # define memEQ(s1,s2,l) (!bcmp(s1,s2,l))
/macosx-10.9.5/CPANInternal-140/Unix-Getrusage-0.03/
H A Dppport.h3115 # define memNE(s1,s2,l) (memcmp(s1,s2,l))
3119 # define memEQ(s1,s2,l) (!memcmp(s1,s2,l))
3124 # define memNE(s1,s2,l) (bcmp(s1,s2,l))
3128 # define memEQ(s1,s2,l) (!bcmp(s1,s2,l))
/macosx-10.9.5/CPANInternal-140/XML-LibXML/
H A Dppport.h3238 # define memNE(s1,s2,l) (memcmp(s1,s2,l))
3242 # define memEQ(s1,s2,l) (!memcmp(s1,s2,l))
3247 # define memNE(s1,s2,l) (bcmp(s1,s2,l))
3251 # define memEQ(s1,s2,l) (!bcmp(s1,s2,l))

Completed in 420 milliseconds

<<11121314151617181920>>