cnt               215 ext/charconv/charconv.c         int cnt = inroom >= 6 ? 6 : inroom;
cnt               216 ext/charconv/charconv.c         ScmObj s = Scm_MakeString(info->buf+insize-inroom, cnt, cnt,
cnt               377 ext/charconv/charconv.c static int conv_output_flusher(ScmPort *port, int cnt, int forcep)
cnt               436 ext/charconv/charconv.c             if (forcep && len - inroom != cnt) continue;
cnt               508 ext/vport/vport.c static int bport_fill(ScmPort *p, int cnt)
cnt               516 ext/vport/vport.c     vec = Scm_MakeU8VectorFromArrayShared(cnt,
cnt               527 ext/vport/vport.c static int bport_flush(ScmPort *p, int cnt, int forcep)
cnt               533 ext/vport/vport.c         return cnt;             /* blackhole */
cnt               535 ext/vport/vport.c     vec = Scm_MakeU8VectorFromArrayShared(cnt,
cnt              1104 src/bignum.c   ScmObj Scm_BignumAsh(ScmBignum *x, int cnt)
cnt              1106 src/bignum.c       if (cnt == 0) return Scm_NormalizeBignum(x);
cnt              1107 src/bignum.c       if (cnt > 0) {
cnt              1108 src/bignum.c           int rsize = SCM_BIGNUM_SIZE(x) + (cnt+WORD_BITS-1)/WORD_BITS;
cnt              1110 src/bignum.c           return Scm_NormalizeBignum(bignum_lshift(r, x, cnt));
cnt              1112 src/bignum.c           int rsize = SCM_BIGNUM_SIZE(x) + cnt/WORD_BITS;
cnt              1124 src/bignum.c                                           Scm_Ash(SCM_MAKE_INT(1), -cnt),
cnt              1129 src/bignum.c                   return Scm_NormalizeBignum(bignum_rshift(r, x, -cnt));
cnt              2100 src/class.c        int cnt = 0, len = Scm_Length(methods), step, i, j;
cnt              2111 src/class.c            array[cnt] = SCM_CAR(mp);
cnt              2112 src/class.c            cnt++;
cnt                95 src/extlib.c     int cnt;
cnt               101 src/extlib.c     cnt = SCM_INT_VALUE(cnt_scm);
cnt               105 src/extlib.c   SCM_RESULT = Scm_Ash(num, cnt);
cnt              3271 src/extlib.c   static int bufport_filler(ScmPort *p, int cnt)
cnt              3277 src/extlib.c       r = Scm_Apply(scmfiller, SCM_LIST1(Scm_MakeInteger(cnt)));
cnt              3285 src/extlib.c       if (siz > cnt) siz = cnt; /* for safety */
cnt              3321 src/extlib.c   static int bufport_flusher(ScmPort *p, int cnt, int forcep)
cnt              3325 src/extlib.c        s = Scm_MakeString(p->src.buf.buffer, cnt, cnt, SCM_MAKSTR_INCOMPLETE|SCM_MAKSTR_COPYING);
cnt              3327 src/extlib.c        return cnt;
cnt              1262 src/gauche.h   #define SCM_VECTOR_FOR_EACH(cnt, obj, vec)           \
cnt              1263 src/gauche.h       for (cnt = 0, obj = SCM_VECTOR_ELEMENT(vec, 0);  \
cnt              1264 src/gauche.h            cnt < SCM_VECTOR_SIZE(vec);                 \
cnt              1265 src/gauche.h            obj = SCM_VECTOR_ELEMENT(vec, ++cnt))
cnt              1308 src/gauche.h       int  (*flusher)(ScmPort *p, int cnt, int forcep);
cnt              2081 src/gauche.h   SCM_EXTERN ScmObj Scm_BignumAsh(ScmBignum *bx, int cnt);
cnt              2184 src/gauche.h   SCM_EXTERN ScmObj Scm_Ash(ScmObj x, int cnt);
cnt               374 src/list.c         int cnt = i;
cnt               376 src/list.c         while (cnt-- > 0) {
cnt              1754 src/number.c   ScmObj Scm_Ash(ScmObj x, int cnt)
cnt              1758 src/number.c           if (cnt <= -(SIZEOF_LONG * 8)) {
cnt              1761 src/number.c           } else if (cnt < 0) {
cnt              1763 src/number.c                   ix = ~((~ix) >> (-cnt));
cnt              1765 src/number.c                   ix >>= -cnt;
cnt              1768 src/number.c           } else if (cnt < (SIZEOF_LONG*8-3)) {
cnt              1770 src/number.c                   if (-ix < (SCM_SMALL_INT_MAX >> cnt)) {
cnt              1771 src/number.c                       ix <<= cnt;
cnt              1775 src/number.c                   if (ix < (SCM_SMALL_INT_MAX >> cnt)) {
cnt              1776 src/number.c                       ix <<= cnt;
cnt              1784 src/number.c               return Scm_BignumAsh(SCM_BIGNUM(big), cnt);
cnt              1787 src/number.c           return Scm_BignumAsh(SCM_BIGNUM(x), cnt);
cnt               475 src/port.c     static void bufport_flush(ScmPort *p, int cnt, int forcep)
cnt               481 src/port.c         if (cnt <= 0)  { cnt = cursiz; force = TRUE; }
cnt               482 src/port.c         nwrote = p->src.buf.flusher(p, cnt, forcep);
cnt               762 src/port.c     static int file_filler(ScmPort *p, int cnt)
cnt               770 src/port.c             SCM_SYSCALL(r, read(fd, datptr, cnt-nread));
cnt               785 src/port.c     static int file_flusher(ScmPort *p, int cnt, int forcep)
cnt               794 src/port.c                || (forcep && nwrote < cnt)) {
cnt              1179 src/port.c     static int coding_filler(ScmPort *p, int cnt)
cnt              1189 src/port.c             return Scm_GetzUnsafe(datptr, cnt, data->source);
cnt              1199 src/port.c             if (data->pbufsize <= cnt) {
cnt              1206 src/port.c                 memcpy(datptr, data->pbuf, cnt);
cnt              1207 src/port.c                 nread = cnt;
cnt              1208 src/port.c                 data->pbuf += cnt;
cnt              1209 src/port.c                 data->pbufsize -= cnt;
cnt              1214 src/port.c             return Scm_GetzUnsafe(datptr, cnt, data->source);
cnt               147 src/prof.c         int i, cnt;
cnt               157 src/prof.c                 cnt = SCM_INT_VALUE(SCM_CDR(e->value)) + 1;
cnt               158 src/prof.c                 SCM_SET_CDR(e->value, SCM_MAKE_INT(cnt));
cnt               187 src/prof.c             int cnt;
cnt               205 src/prof.c             cnt = SCM_INT_VALUE(SCM_CAR(e->value)) + 1;
cnt               206 src/prof.c             SCM_SET_CAR(e->value, SCM_MAKE_INT(cnt));
cnt               202 src/signal.c       int cnt = 0;
cnt               205 src/signal.c               if (cnt++) Scm_Putc('|', port);
cnt               462 src/system.c           int cnt = 0;            /* # of components except ".."'s */
cnt               477 src/system.c                   if (cnt > 0) {
cnt               480 src/system.c                       cnt--;
cnt               488 src/system.c                   cnt++;