pe                226 ext/net/netdb.c static ScmSysProtoent *make_protoent(struct protoent *pe)
pe                233 ext/net/netdb.c     entry->name = SCM_MAKE_STR_COPYING(pe->p_name);
pe                234 ext/net/netdb.c     for (p = pe->p_aliases; *p; p++) {
pe                238 ext/net/netdb.c     entry->proto = Scm_MakeInteger(pe->p_proto);
pe                248 ext/net/netdb.c         struct protoent pe;
pe                253 ext/net/netdb.c             if (getprotobyname_r(name, &pe, buf, bufsiz) != NULL) break;
pe                259 ext/net/netdb.c             getprotobyname_r(name, &pe, buf, bufsiz, &rpe);
pe                268 ext/net/netdb.c         entry = SCM_OBJ(make_protoent(&pe));
pe                275 ext/net/netdb.c                          struct protoent *pe = getprotobyname(name);
pe                276 ext/net/netdb.c                          if (pe != NULL) entry = SCM_OBJ(make_protoent(pe));
pe                288 ext/net/netdb.c         struct protoent pe;
pe                293 ext/net/netdb.c             if (getprotobynumber_r(number, &pe, buf, bufsiz) != NULL) break;
pe                299 ext/net/netdb.c             getprotobynumber_r(number, &pe, buf, bufsiz, &rpe);
pe                308 ext/net/netdb.c         entry = SCM_OBJ(make_protoent(&pe));
pe                315 ext/net/netdb.c                          struct protoent *pe = getprotobynumber(number);
pe                316 ext/net/netdb.c                          if (pe != NULL) entry = SCM_OBJ(make_protoent(pe));
pe                 77 gc/checksums.c     page_entry *pe = GC_sums + index;
pe                 81 gc/checksums.c     if (pe -> block != 0 && pe -> block != h + OFFSET) ABORT("goofed");
pe                 82 gc/checksums.c     pe -> old_sum = pe -> new_sum;
pe                 83 gc/checksums.c     pe -> new_sum = GC_checksum(h);
pe                 85 gc/checksums.c         if (pe -> new_sum != 0x80000000 && !GC_page_was_ever_dirty(h)) {
pe                100 gc/checksums.c     if (pe -> new_valid
pe                102 gc/checksums.c 	&& pe -> old_sum != pe -> new_sum) {
pe                117 gc/checksums.c     pe -> new_valid = TRUE;
pe                118 gc/checksums.c     pe -> block = h + OFFSET;
pe                771 gc/cord/cordbscs.c     struct CORD_pe * pe = &((p)[0].path[(p)[0].path_len]);
pe                772 gc/cord/cordbscs.c     CORD leaf = pe -> pe_cord;
pe                776 gc/cord/cordbscs.c     return ((*(f -> fn))(p[0].cur_pos - pe -> pe_start_pos, f -> client_data));
pe                833 gc/cord/cordbscs.c     register struct CORD_pe * pe = &(p[0].path[p[0].path_len]);
pe                840 gc/cord/cordbscs.c     if (p[0].cur_pos >= pe -> pe_start_pos) return;
pe                585 src/error.c        ScmObj e, smsg, pe;
pe                615 src/error.c            pe = porterror_allocate(peclass, SCM_NIL);
pe                616 src/error.c            SCM_ERROR(pe)->message = smsg;
pe                617 src/error.c            SCM_PORT_ERROR(pe)->port = port;
pe                621 src/error.c                                                        pe));
pe                623 src/error.c                e = pe;
pe                822 src/macro.c            ScmObj h = SCM_NIL, t = SCM_NIL, r, *pe;
pe                824 src/macro.c            pe = SCM_VECTOR_ELEMENTS(template);
pe                826 src/macro.c            for (i=0; i<len; i++, pe++) {
pe                827 src/macro.c                if (SCM_SYNTAX_PATTERN_P(*pe)) {
pe                828 src/macro.c                    r = realize_template_rec(*pe, mvec, level, indices, idlist, exlev);
pe                832 src/macro.c                    r = realize_template_rec(*pe, mvec, level, indices, idlist, exlev);