orig              554 gc/mark.c      	    register ptr_t orig = current;
orig              562 gc/mark.c      	    if (hhdr -> hb_flags & IGNORE_OFF_PAGE) return(orig);
orig              563 gc/mark.c      	    if ((word *)orig - (word *)current
orig              566 gc/mark.c      	        return(orig);
orig              186 src/compaux.c  ScmObj Scm_CopyIdentifier(ScmIdentifier *orig)
orig              190 src/compaux.c      id->name = orig->name;
orig              191 src/compaux.c      id->module = orig->module;
orig              192 src/compaux.c      id->env = orig->env;
orig               55 src/paths.c    void maybe_prepend_install_dir(const char *orig, char *buf, int buflen,
orig               58 src/paths.c        if (*orig == '@') {
orig               60 src/paths.c            if (len + strlen(orig) > buflen) {
orig               61 src/paths.c                errfn("Pathname too long: %s", orig);
orig               63 src/paths.c            strcat(buf, orig+1);
orig               65 src/paths.c            if (strlen(orig) >= buflen-1) {
orig               66 src/paths.c                errfn("Pathname too long: %s", orig);
orig               68 src/paths.c            strcpy(buf, orig);
orig             1917 src/regexp.c   static ScmObj make_match(ScmRegexp *rx, ScmString *orig,
orig             1930 src/regexp.c       origb = SCM_STRING_BODY(orig);
orig             1961 src/regexp.c   static ScmObj rex(ScmRegexp *rx, ScmString *orig,
orig             1968 src/regexp.c       ctx.input = SCM_STRING_BODY_START(SCM_STRING_BODY(orig));
orig             1978 src/regexp.c           return make_match(rx, orig, &ctx);