istr             1386 src/gauche.h           } istr;                 /* input string port */
istr              904 src/port.c         p->src.istr.start = s;
istr              905 src/port.c         p->src.istr.current = s;
istr              906 src/port.c         p->src.istr.end = s + size;
istr              948 src/port.c         ep = port->src.istr.end;
istr              949 src/port.c         cp = port->src.istr.current;
istr              475 src/portapi.c              if (p->src.istr.current >= p->src.istr.end) b = EOF;
istr              476 src/portapi.c              else b = (unsigned char)*p->src.istr.current++;
istr              601 src/portapi.c          if (p->src.istr.current >= p->src.istr.end) {
istr              605 src/portapi.c          first = (unsigned char)*p->src.istr.current++;
istr              608 src/portapi.c              if (p->src.istr.current + nb > p->src.istr.end) {
istr              614 src/portapi.c              SCM_CHAR_GET(p->src.istr.current-1, c);
istr              615 src/portapi.c              p->src.istr.current += nb;
istr              672 src/portapi.c      if (p->src.istr.current + buflen >= p->src.istr.end) {
istr              673 src/portapi.c          if (p->src.istr.current >= p->src.istr.end) return EOF;
istr              674 src/portapi.c          siz = (int)(p->src.istr.end - p->src.istr.current);
istr              675 src/portapi.c          memcpy(buf, p->src.istr.current, siz);
istr              676 src/portapi.c          p->src.istr.current = p->src.istr.end;
istr              679 src/portapi.c          memcpy(buf, p->src.istr.current, buflen);
istr              680 src/portapi.c          p->src.istr.current += buflen;
istr              882 src/portapi.c          r = (off_t)(p->src.istr.current - p->src.istr.start);
istr              886 src/portapi.c              z += (long)(p->src.istr.current - p->src.istr.start);
istr              888 src/portapi.c              z += (long)(p->src.istr.end - p->src.istr.start);
istr              890 src/portapi.c          if (z < 0 || z > (long)(p->src.istr.end - p->src.istr.start)) {
istr              893 src/portapi.c              p->src.istr.current = p->src.istr.start + z;
istr              894 src/portapi.c              r = (off_t)(p->src.istr.current - p->src.istr.start);