s2                152 ext/charconv/jconv.c     unsigned char s1, s2;
s2                165 ext/charconv/jconv.c         s2 = inptr[1];
s2                166 ext/charconv/jconv.c         if (s2 < 0x40 || s2 > 0xfc) {
s2                174 ext/charconv/jconv.c             e1 = (s1-0x80)*2 + 0xa0 - ((s2 < 0x9f)? 1 : 0);
s2                178 ext/charconv/jconv.c             e1 = (s1-0xc0)*2 + 0xa0 - ((s2 < 0x9f)? 1 : 0);
s2                182 ext/charconv/jconv.c             e1 = (s1-0xf5)*2 + 0x50 + 0xa0 - ((s2 < 0x9f)? 1 : 0);
s2                186 ext/charconv/jconv.c             e1 = cvt[(s1-0xf0)*2+((s2 < 0x9f)? 1 : 0)];
s2                189 ext/charconv/jconv.c         if (s2 < 0x7f) {
s2                190 ext/charconv/jconv.c             e2 = s2 - 0x3f + 0xa0;
s2                191 ext/charconv/jconv.c         } else if (s2 < 0x9f) {
s2                192 ext/charconv/jconv.c             e2 = s2 - 0x40 + 0xa0;
s2                194 ext/charconv/jconv.c             e2 = s2 - 0x9e + 0xa0;
s2                304 ext/charconv/jconv.c         unsigned char s1, s2;
s2                315 ext/charconv/jconv.c             s2 = e2 - 0xa0 + 0x9e;
s2                317 ext/charconv/jconv.c             if (e2 <= 0xdf) s2 = e2 - 0xa0 + 0x3f;
s2                318 ext/charconv/jconv.c             else            s2 = e2 - 0xa0 + 0x40;
s2                321 ext/charconv/jconv.c         outptr[1] = s2;
s2                339 ext/charconv/jconv.c         unsigned char s1, s2;
s2                363 ext/charconv/jconv.c             s2 = e2 - 0xa0 + 0x9e;
s2                365 ext/charconv/jconv.c             if (e2 < 0xdf) s2 = e2 - 0xa0 + 0x3f;
s2                366 ext/charconv/jconv.c             else           s2 = e2 - 0xa0 + 0x40;
s2                369 ext/charconv/jconv.c         outptr[1] = s2;
s2               2009 src/extlib.c     ScmObj s2;
s2               2020 src/extlib.c     s2 = (s2_scm);
s2               2038 src/extlib.c     if (SCM_STRINGP(s2)) {
s2               2039 src/extlib.c        SCM_RETURN(Scm_StringScan(s1, SCM_STRING(s2), retmode));
s2               2040 src/extlib.c     } else if (SCM_CHARP(s2)) {
s2               2041 src/extlib.c        SCM_RETURN(Scm_StringScanChar(s1, SCM_CHAR_VALUE(s2), retmode));
s2               2043 src/extlib.c        Scm_Error("bad type of argument for s2: %S, must be either string or character", s2);
s2               1095 src/gauche.h   SCM_EXTERN ScmObj  Scm_StringScan(ScmString *s1, ScmString *s2, int retmode);
s2                222 src/signal.c   static void sigset_op(sigset_t *s1, sigset_t *s2, int delp)
s2                226 src/signal.c           if (sigismember(s2, desc->num)) {
s2               2657 src/stdlib.c     ScmString* s2;
s2               2664 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2668 src/stdlib.c   SCM_RESULT = Scm_StringEqual(s1, s2);
s2               2682 src/stdlib.c     ScmString* s2;
s2               2689 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2693 src/stdlib.c    SCM_RESULT = (Scm_StringCmp(s1, s2) < 0);
s2               2707 src/stdlib.c     ScmString* s2;
s2               2714 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2718 src/stdlib.c    SCM_RESULT = (Scm_StringCmp(s1, s2) <= 0);
s2               2732 src/stdlib.c     ScmString* s2;
s2               2739 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2743 src/stdlib.c    SCM_RESULT = (Scm_StringCmp(s1, s2) > 0);
s2               2757 src/stdlib.c     ScmString* s2;
s2               2764 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2768 src/stdlib.c    SCM_RESULT = (Scm_StringCmp(s1, s2) >= 0);
s2               2782 src/stdlib.c     ScmString* s2;
s2               2789 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2793 src/stdlib.c    SCM_RESULT = (Scm_StringCiCmp(s1, s2) == 0);
s2               2807 src/stdlib.c     ScmString* s2;
s2               2814 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2818 src/stdlib.c    SCM_RESULT = (Scm_StringCiCmp(s1, s2) < 0);
s2               2832 src/stdlib.c     ScmString* s2;
s2               2839 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2843 src/stdlib.c    SCM_RESULT = (Scm_StringCiCmp(s1, s2) <= 0);
s2               2857 src/stdlib.c     ScmString* s2;
s2               2864 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2868 src/stdlib.c    SCM_RESULT = (Scm_StringCiCmp(s1, s2) > 0);
s2               2882 src/stdlib.c     ScmString* s2;
s2               2889 src/stdlib.c     s2 = SCM_STRING(s2_scm);
s2               2893 src/stdlib.c    SCM_RESULT = (Scm_StringCiCmp(s1, s2) >= 0);
s2               1039 src/string.c   ScmObj Scm_StringScan(ScmString *s1, ScmString *s2, int retmode)
s2               1041 src/string.c       const ScmStringBody *s2b = SCM_STRING_BODY(s2);