s1               7615 lib-src/etags.c pfatal (const char *s1)
s1               7617 lib-src/etags.c   perror (s1);
s1               7650 lib-src/etags.c concat (const char *s1, const char *s2, const char *s3)
s1               7652 lib-src/etags.c   ptrdiff_t len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
s1               7654 lib-src/etags.c   strcpy (stpcpy (stpcpy (result, s1), s2), s3);
s1                134 lib-src/movemail.c static _Noreturn void fatal (const char *s1, const char *s2, const char *s3);
s1                135 lib-src/movemail.c static void error (const char *s1, const char *s2, const char *s3);
s1                548 lib-src/movemail.c fatal (const char *s1, const char *s2, const char *s3)
s1                552 lib-src/movemail.c   error (s1, s2, s3);
s1                560 lib-src/movemail.c error (const char *s1, const char *s2, const char *s3)
s1                564 lib-src/movemail.c     fprintf (stderr, s1, s2, s3);
s1                566 lib-src/movemail.c     fprintf (stderr, s1, s2);
s1                568 lib-src/movemail.c     fprintf (stderr, "%s", s1);
s1                 47 lib/c-strcase.h extern int c_strcasecmp (const char *s1, const char *s2) _GL_ATTRIBUTE_PURE;
s1                 52 lib/c-strcase.h extern int c_strncasecmp (const char *s1, const char *s2, size_t n)
s1                 27 lib/c-strcasecmp.c c_strcasecmp (const char *s1, const char *s2)
s1                 29 lib/c-strcasecmp.c   register const unsigned char *p1 = (const unsigned char *) s1;
s1                 27 lib/c-strncasecmp.c c_strncasecmp (const char *s1, const char *s2, size_t n)
s1                 29 lib/c-strncasecmp.c   register const unsigned char *p1 = (const unsigned char *) s1;
s1                 92 lib/filevercmp.c verrevcmp (const char *s1, idx_t s1_len, const char *s2, idx_t s2_len)
s1                 99 lib/filevercmp.c       while ((s1_pos < s1_len && !c_isdigit (s1[s1_pos]))
s1                102 lib/filevercmp.c           int s1_c = order (s1, s1_pos, s1_len);
s1                109 lib/filevercmp.c       while (s1_pos < s1_len && s1[s1_pos] == '0')
s1                114 lib/filevercmp.c              && c_isdigit (s1[s1_pos]) && c_isdigit (s2[s2_pos]))
s1                117 lib/filevercmp.c             first_diff = s1[s1_pos] - s2[s2_pos];
s1                121 lib/filevercmp.c       if (s1_pos < s1_len && c_isdigit (s1[s1_pos]))
s1                134 lib/filevercmp.c filevercmp (const char *s1, const char *s2)
s1                136 lib/filevercmp.c   return filenvercmp (s1, -1, s2, -1);
s1               2809 lib/mini-gmp.c   mpz_t tu, tv, s0, s1, t0, t1;
s1               2840 lib/mini-gmp.c   mpz_init (s1);
s1               2888 lib/mini-gmp.c   mpz_setbit (s1, vz);
s1               2914 lib/mini-gmp.c 	      mpz_add (s0, s0, s1);
s1               2918 lib/mini-gmp.c 	      mpz_mul_2exp (s1, s1, shift);
s1               2924 lib/mini-gmp.c 	      mpz_add (s1, s0, s1);
s1               2945 lib/mini-gmp.c   mpz_divexact (s1, v, tv);
s1               2946 lib/mini-gmp.c   mpz_abs (s1, s1);
s1               2955 lib/mini-gmp.c 	  mpz_sub (s0, s0, s1);
s1               2964 lib/mini-gmp.c   mpz_add (s1, s0, s1);
s1               2965 lib/mini-gmp.c   if (mpz_cmpabs (s0, s1) > 0)
s1               2967 lib/mini-gmp.c       mpz_swap (s0, s1);
s1               2984 lib/mini-gmp.c   mpz_clear (s1);
s1                 58 lib/regex.c    # define re_search_2(bufp, st1, s1, st2, s2, startpos, range, regs, stop) \
s1                 59 lib/regex.c    	__re_search_2 (bufp, st1, s1, st2, s2, startpos, range, regs, stop)
s1               1087 lib/string.in.h _GL_EXTERN_C int mbscasecmp (const char *s1, const char *s2)
s1               1102 lib/string.in.h _GL_EXTERN_C int mbsncasecmp (const char *s1, const char *s2, size_t n)
s1                317 lwlib/lwlib.c  safe_strcmp (const char *s1, const char *s2)
s1                319 lwlib/lwlib.c    if (!!s1 ^ !!s2) return True;
s1                320 lwlib/lwlib.c    return (s1 && s2) ? strcmp (s1, s2) : s1 ? False : !!s2;
s1               3188 src/buffer.c     const struct sortvec *s1 = v1;
s1               3192 src/buffer.c     if (s1->priority != s2->priority)
s1               3193 src/buffer.c       return s1->priority < s2->priority ? -1 : 1;
s1               3196 src/buffer.c     else if (s1->beg < s2->beg)
s1               3197 src/buffer.c       return (s1->end < s2->end && s1->spriority > s2->spriority ? 1 : -1);
s1               3198 src/buffer.c     else if (s1->beg > s2->beg)
s1               3199 src/buffer.c       return (s1->end > s2->end && s1->spriority < s2->spriority ? -1 : 1);
s1               3200 src/buffer.c     else if (s1->end != s2->end)
s1               3201 src/buffer.c       return s2->end < s1->end ? -1 : 1;
s1               3202 src/buffer.c     else if (s1->spriority != s2->spriority)
s1               3203 src/buffer.c       return (s1->spriority < s2->spriority ? -1 : 1);
s1               3204 src/buffer.c     else if (EQ (s1->overlay, s2->overlay))
s1               3211 src/buffer.c       return XLI (s1->overlay) < XLI (s2->overlay) ? -1 : 1;
s1               3315 src/buffer.c     struct sortstr const *s1 = as1;
s1               3317 src/buffer.c     if (s1->size != s2->size)
s1               3318 src/buffer.c       return s2->size < s1->size ? -1 : 1;
s1               3319 src/buffer.c     if (s1->priority != s2->priority)
s1               3320 src/buffer.c       return s1->priority < s2->priority ? -1 : 1;
s1                564 src/coding.h       int s1, s2, j1, j2;					\
s1                566 src/coding.h       s1 = (code) >> 8, s2 = (code) & 0xFF;		\
s1                569 src/coding.h         (j1 = s1 * 2 - (s1 >= 0xE0 ? 0x160 : 0xE0),	\
s1                572 src/coding.h         (j1 = s1 * 2 - ((s1 >= 0xE0) ? 0x161 : 0xE1),	\
s1                579 src/coding.h       int s1, s2, j1, j2;					\
s1                581 src/coding.h       s1 = (code) >> 8, s2 = (code) & 0xFF;		\
s1                585 src/coding.h   	j1 = (s1 == 0xF0 ? 0x28				\
s1                586 src/coding.h   	      : s1 == 0xF1 ? 0x24			\
s1                587 src/coding.h   	      : s1 == 0xF2 ? 0x2C			\
s1                588 src/coding.h   	      : s1 == 0xF3 ? 0x2E			\
s1                589 src/coding.h   	      : 0x6E + (s1 - 0xF4) * 2);		\
s1                594 src/coding.h   	j1 = (s1 <= 0xF2 ? 0x21 + (s1 - 0xF0) * 2	\
s1                595 src/coding.h   	      : s1 <= 0xF4 ? 0x2D + (s1 - 0xF3) * 2	\
s1                596 src/coding.h   	      : 0x6F + (s1 - 0xF5) * 2);		\
s1                605 src/coding.h       int s1, s2, j1, j2;					\
s1                609 src/coding.h         (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x71 : 0xB1),	\
s1                612 src/coding.h         (s1 = j1 / 2 + ((j1 < 0x5F) ? 0x70 : 0xB0),	\
s1                614 src/coding.h       (code) = (s1 << 8) | s2;				\
s1                619 src/coding.h       int s1, s2, j1, j2;					\
s1                624 src/coding.h   	s1 = (j1 <= 0x25 ? 0xF0 + (j1 - 0x21) / 2	\
s1                631 src/coding.h   	s1 = (j1 == 0x28 ? 0xF0				\
s1                638 src/coding.h       (code) = (s1 << 8) | s2;				\
s1                865 src/dired.c    scmp (const char *s1, const char *s2, ptrdiff_t len)
s1                875 src/dired.c    	     && (downcase ((unsigned char) *s1++)
s1                881 src/dired.c          while (l && *s1++ == *s2++)
s1                300 src/fns.c            char *s1 = SSDATA (string1);
s1                310 src/fns.c      			       lastdiag + (s1[y-1] == s2[x-1] ? 0 : 1));
s1                345 src/fns.c        (register Lisp_Object s1, Lisp_Object s2)
s1                347 src/fns.c        if (SYMBOLP (s1))
s1                348 src/fns.c          s1 = SYMBOL_NAME (s1);
s1                351 src/fns.c        CHECK_STRING (s1);
s1                354 src/fns.c        if (SCHARS (s1) != SCHARS (s2)
s1                355 src/fns.c            || SBYTES (s1) != SBYTES (s2)
s1                356 src/fns.c            || memcmp (SDATA (s1), SDATA (s2), SBYTES (s1)))
s1                620 src/fns.c        (Lisp_Object s1, Lisp_Object s2, Lisp_Object locale, Lisp_Object ignore_case)
s1                624 src/fns.c        if (SYMBOLP (s1))
s1                625 src/fns.c          s1 = SYMBOL_NAME (s1);
s1                628 src/fns.c        CHECK_STRING (s1);
s1                633 src/fns.c        return (str_collate (s1, s2, locale, ignore_case) < 0) ? Qt : Qnil;
s1                636 src/fns.c        return Fstring_lessp (s1, s2);
s1                669 src/fns.c        (Lisp_Object s1, Lisp_Object s2, Lisp_Object locale, Lisp_Object ignore_case)
s1                673 src/fns.c        if (SYMBOLP (s1))
s1                674 src/fns.c          s1 = SYMBOL_NAME (s1);
s1                677 src/fns.c        CHECK_STRING (s1);
s1                682 src/fns.c        return (str_collate (s1, s2, locale, ignore_case) == 0) ? Qt : Qnil;
s1                685 src/fns.c        return Fstring_equal (s1, s2);
s1                695 src/fns.c      concat2 (Lisp_Object s1, Lisp_Object s2)
s1                697 src/fns.c        return concat_to_string (2, ((Lisp_Object []) {s1, s2}));
s1                701 src/fns.c      concat3 (Lisp_Object s1, Lisp_Object s2, Lisp_Object s3)
s1                703 src/fns.c        return concat_to_string (3, ((Lisp_Object []) {s1, s2, s3}));
s1               2974 src/fns.c      nconc2 (Lisp_Object s1, Lisp_Object s2)
s1               2976 src/fns.c        return CALLN (Fnconc, s1, s2);
s1               2285 src/intervals.c compare_string_intervals (Lisp_Object s1, Lisp_Object s2)
s1               2289 src/intervals.c   ptrdiff_t end = SCHARS (s1);
s1               2291 src/intervals.c   i1 = find_interval (string_intervals (s1), 0);
s1               1621 src/lread.c    	  struct stat s1, s2;
s1               1638 src/lread.c    	      result = emacs_fstatat (AT_FDCWD, SSDATA (efound), &s1, 0);
s1               1647 src/lread.c                      && timespec_cmp (get_stat_mtime (&s1), get_stat_mtime (&s2)) < 0)
s1               1658 src/lread.c    		      && timespec_cmp (get_stat_mtime (&s1), epoch_timespec))
s1                450 src/regex-emacs.c # define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)			\
s1                451 src/regex-emacs.c   if (regex_emacs_debug > 0) print_double_string (w, s1, sz1, s2, sz2)
s1                792 src/regex-emacs.c # define DEBUG_PRINT_DOUBLE_STRING(w, s1, sz1, s2, sz2)
s1               4802 src/regex-emacs.c 		int s1, s2;
s1               4809 src/regex-emacs.c 		s1 = SYNTAX (c1);
s1               4817 src/regex-emacs.c 		    ((s1 == Sword) != (s2 == Sword))
s1               4820 src/regex-emacs.c 		    || ((s1 == Sword) && WORD_BOUNDARY_P (c1, c2)))
s1               4842 src/regex-emacs.c 	      int s1, s2;
s1               4862 src/regex-emacs.c 		  s1 = SYNTAX (c1);
s1               4866 src/regex-emacs.c 		  if ((s1 == Sword) && !WORD_BOUNDARY_P (c1, c2))
s1               4885 src/regex-emacs.c 	      int s1, s2;
s1               4892 src/regex-emacs.c 	      s1 = SYNTAX (c1);
s1               4895 src/regex-emacs.c 	      if (s1 != Sword)
s1               4928 src/regex-emacs.c 	      int s1, s2;
s1               4947 src/regex-emacs.c 		  s1 = SYNTAX (c1);
s1               4950 src/regex-emacs.c 		  if (s1 == Sword || s1 == Ssymbol)
s1               4969 src/regex-emacs.c 	      int s1, s2;
s1               4975 src/regex-emacs.c 	      s1 = SYNTAX (c1);
s1               4978 src/regex-emacs.c 	      if (s1 != Sword && s1 != Ssymbol)
s1               5119 src/regex-emacs.c bcmp_translate (re_char *s1, re_char *s2, ptrdiff_t len,
s1               5122 src/regex-emacs.c   re_char *p1 = s1, *p2 = s2;
s1               5123 src/regex-emacs.c   re_char *p1_end = s1 + len;
s1                265 src/search.c     ptrdiff_t s1, s2;
s1                296 src/search.c     s1 = GPT_BYTE - BEGV_BYTE;
s1                299 src/search.c     if (s1 < 0)
s1                303 src/search.c         s1 = 0;
s1                307 src/search.c         s1 = ZV_BYTE - BEGV_BYTE;
s1                315 src/search.c     i = re_match_2 (&cache_entry->buf, (char *) p1, s1, (char *) p2, s2,
s1                537 src/search.c     ptrdiff_t s1, s2;
s1                547 src/search.c         s1 = 0;
s1                561 src/search.c         s1 = GPT_BYTE - BEGV_BYTE;
s1                564 src/search.c         if (s1 < 0)
s1                568 src/search.c   	  s1 = 0;
s1                572 src/search.c   	  s1 = ZV_BYTE - BEGV_BYTE;
s1                584 src/search.c     len = re_match_2 (&cache_entry->buf, (char *) p1, s1, (char *) p2, s2,
s1               1162 src/search.c     ptrdiff_t s1, s2;
s1               1180 src/search.c     s1 = GPT_BYTE - BEGV_BYTE;
s1               1183 src/search.c     if (s1 < 0)
s1               1187 src/search.c         s1 = 0;
s1               1191 src/search.c         s1 = ZV_BYTE - BEGV_BYTE;
s1               1204 src/search.c         val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
s1               1251 src/search.c         val = re_search_2 (bufp, (char *) p1, s1, (char *) p2, s2,
s1                791 src/sort.c     powerloop (const ptrdiff_t s1, const ptrdiff_t n1, const ptrdiff_t n2,
s1                794 src/sort.c       eassume (s1 >= 0);
s1                796 src/sort.c       eassume (s1 + n1 + n2 <= n);
s1                805 src/sort.c       ptrdiff_t a = 2 * s1 + n1;
s1                844 src/sort.c           ptrdiff_t s1 = p[ms->n - 1].base - ms->listbase;
s1                846 src/sort.c           int power = powerloop (s1, n1, n2, ms->listlen);
s1               4664 src/sysdep.c   str_collate (Lisp_Object s1, Lisp_Object s2,
s1               4674 src/sysdep.c     len = SCHARS (s1); i = i_byte = 0;
s1               4679 src/sysdep.c         *p = fetch_string_char_advance (s1, &i, &i_byte);
s1               4741 src/sysdep.c   str_collate (Lisp_Object s1, Lisp_Object s2,
s1               4749 src/sysdep.c     res = w32_compare_strings (SSDATA (s1), SSDATA (s2), loc, !NILP (ignore_case));
s1               3813 src/w32proc.c  w32_compare_strings (const char *s1, const char *s2, char *locname,
s1               3829 src/w32proc.c      return (ignore_case ? stricmp (s1, s2) : strcmp (s1, s2));
s1               3852 src/w32proc.c    needed = pMultiByteToWideChar (CP_UTF8, MB_ERR_INVALID_CHARS, s1, -1, NULL, 0);
s1               3856 src/w32proc.c        pMultiByteToWideChar (CP_UTF8, MB_ERR_INVALID_CHARS, s1, -1,
s1               5323 src/xfaces.c   	    Lisp_Object s1, s2;
s1               5328 src/xfaces.c   	    s1 = SYMBOL_NAME (face->font->props[i]);
s1               5330 src/xfaces.c   	    if (! BASE_EQ (Fcompare_strings (s1, make_fixnum (0), Qnil,
s1               6277 test/manual/etags/c-src/etags.c fatal (const char *s1, const char *s2)
s1               6279 test/manual/etags/c-src/etags.c   error (s1, s2);
s1               6284 test/manual/etags/c-src/etags.c pfatal (const char *s1)
s1               6286 test/manual/etags/c-src/etags.c   perror (s1);
s1               6313 test/manual/etags/c-src/etags.c concat (const char *s1, const char *s2, const char *s3)
s1               6315 test/manual/etags/c-src/etags.c   int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3);
s1               6318 test/manual/etags/c-src/etags.c   strcpy (result, s1);