bytes              64 ext/digest/sha.c   ctx->bytes = 0;
bytes             267 ext/digest/sha.c   i = (unsigned) ctx->bytes % SHA_BLOCKBYTES;
bytes             268 ext/digest/sha.c   ctx->bytes += len;
bytes             316 ext/digest/sha.c   unsigned i = (unsigned) ctx->bytes % SHA_BLOCKBYTES;
bytes             342 ext/digest/sha.c   ctx->key[14] = (uint32_t) (ctx->bytes >> 29);
bytes             343 ext/digest/sha.c   ctx->key[15] = (uint32_t) ctx->bytes << 3;
bytes              36 ext/digest/sha.h  uint64_t bytes;
bytes             183 ext/net/gauche/net.h extern ScmObj Scm_SocketRecv(ScmSocket *s, int bytes, int flags);
bytes             184 ext/net/gauche/net.h extern ScmObj Scm_SocketRecvFrom(ScmSocket *s, int bytes, int flags);
bytes             344 ext/net/net.c  ScmObj Scm_SocketRecv(ScmSocket *sock, int bytes, int flags)
bytes             351 ext/net/net.c      buf = SCM_NEW_ATOMIC2(char*, bytes);
bytes             352 ext/net/net.c      SCM_SYSCALL(r, recv(sock->fd, buf, bytes, flags));
bytes             359 ext/net/net.c  ScmObj Scm_SocketRecvFrom(ScmSocket *sock, int bytes, int flags)
bytes             368 ext/net/net.c      buf = SCM_NEW_ATOMIC2(char*, bytes);
bytes             369 ext/net/net.c      SCM_SYSCALL(r, recvfrom(sock->fd, buf, bytes, flags, &from, &fromlen));
bytes             793 ext/net/netlib.c   int bytes;
bytes             805 ext/net/netlib.c   bytes = SCM_INT_VALUE(bytes_scm);
bytes             816 ext/net/netlib.c SCM_RESULT = Scm_SocketRecv(sock, bytes, flags);
bytes             830 ext/net/netlib.c   int bytes;
bytes             842 ext/net/netlib.c   bytes = SCM_INT_VALUE(bytes_scm);
bytes             853 ext/net/netlib.c SCM_RESULT = Scm_SocketRecvFrom(sock, bytes, flags);
bytes              59 gc/allchblk.c    static GC_bool GC_enough_large_bytes_left(bytes,n)
bytes              60 gc/allchblk.c    word bytes;
bytes              65 gc/allchblk.c  	bytes += GC_free_bytes[i];
bytes              66 gc/allchblk.c  	if (bytes > GC_max_large_allocd_bytes) return TRUE;
bytes             170 gc/allchblk.c      size_t bytes;
bytes             174 gc/allchblk.c  	bytes = GC_heap_sects[i].hs_bytes;
bytes             175 gc/allchblk.c  	end = start + bytes;
bytes             458 gc/allchblk.c  struct hblk * GC_get_first_part(h, hhdr, bytes, index)
bytes             461 gc/allchblk.c  word bytes;
bytes             470 gc/allchblk.c      if (total_size == bytes) return h;
bytes             471 gc/allchblk.c      rest = (struct hblk *)((word)h + bytes);
bytes             478 gc/allchblk.c      rest_hdr -> hb_sz = total_size - bytes;
bytes             804 gc/alloc.c     void GC_add_to_heap(p, bytes)
bytes             806 gc/alloc.c     word bytes;
bytes             822 gc/alloc.c         GC_heap_sects[GC_n_heap_sects].hs_bytes = bytes;
bytes             824 gc/alloc.c         words = BYTES_TO_WORDS(bytes);
bytes             829 gc/alloc.c         GC_heapsize += bytes;
bytes             838 gc/alloc.c         if ((ptr_t)p + bytes >= (ptr_t)GC_greatest_plausible_heap_addr) {
bytes             839 gc/alloc.c             GC_greatest_plausible_heap_addr = (GC_PTR)((ptr_t)p + bytes);
bytes             903 gc/alloc.c         word bytes;
bytes             909 gc/alloc.c         bytes = n * HBLKSIZE;
bytes             913 gc/alloc.c     	bytes += mask;
bytes             914 gc/alloc.c     	bytes &= ~mask;
bytes             917 gc/alloc.c         if (GC_max_heapsize != 0 && GC_heapsize + bytes > GC_max_heapsize) {
bytes             921 gc/alloc.c         space = GET_MEM(bytes);
bytes             926 gc/alloc.c     		       (unsigned long)bytes);
bytes             934 gc/alloc.c     	           (unsigned long)bytes,
bytes             949 gc/alloc.c                                (ptr_t)space + bytes + expansion_slop);
bytes             957 gc/alloc.c           if (((ptr_t)GC_greatest_plausible_heap_addr <= (ptr_t)space + bytes
bytes             966 gc/alloc.c         GC_add_to_heap(space, bytes);
bytes             980 gc/alloc.c       int GC_expand_hp(size_t bytes)
bytes             982 gc/alloc.c       int GC_expand_hp(bytes)
bytes             983 gc/alloc.c       size_t bytes;
bytes             992 gc/alloc.c         result = (int)GC_expand_hp_inner(divHBLKSZ((word)bytes));
bytes             993 gc/alloc.c         if (result) GC_requested_heapsize += bytes;
bytes             128 gc/checksums.c    register bytes = WORDS_TO_BYTES(hhdr -> hb_sz);
bytes             130 gc/checksums.c    bytes += HBLKSIZE-1;
bytes             131 gc/checksums.c    bytes &= ~(HBLKSIZE-1);
bytes             132 gc/checksums.c    GC_bytes_in_used_blocks += bytes;
bytes              56 gc/headers.c   ptr_t GC_scratch_alloc(bytes)
bytes              57 gc/headers.c   register word bytes;
bytes              66 gc/headers.c       bytes += GRANULARITY-1;
bytes              67 gc/headers.c       bytes &= ~(GRANULARITY-1);
bytes              68 gc/headers.c       scratch_free_ptr += bytes;
bytes              75 gc/headers.c           if (bytes_to_get <= bytes) {
bytes              77 gc/headers.c   	    bytes_to_get = bytes;
bytes              83 gc/headers.c               scratch_free_ptr -= bytes;
bytes              84 gc/headers.c   	    GC_scratch_last_end_ptr = result + bytes;
bytes              92 gc/headers.c               scratch_free_ptr -= bytes;
bytes              93 gc/headers.c   	    bytes_to_get = bytes;
bytes             103 gc/headers.c           return(GC_scratch_alloc(bytes));
bytes              54 gc/include/gc_local_alloc.h GC_PTR GC_local_malloc(size_t bytes);
bytes              56 gc/include/gc_local_alloc.h GC_PTR GC_local_malloc_atomic(size_t bytes);
bytes              59 gc/include/gc_local_alloc.h   GC_PTR GC_local_gcj_malloc(size_t bytes,
bytes              99 gc/include/gc_typed.h #   define GC_MALLOC_EXPLICITLY_TYPED(bytes, d) GC_MALLOC(bytes)
bytes             100 gc/include/gc_typed.h #   define GC_CALLOC_EXPLICITLY_TYPED(n, bytes, d) GC_MALLOC(n*bytes)
bytes             102 gc/include/gc_typed.h #  define GC_MALLOC_EXPLICITLY_TYPED(bytes, d) \
bytes             103 gc/include/gc_typed.h 	GC_malloc_explicitly_typed(bytes, d)
bytes             104 gc/include/gc_typed.h #  define GC_CALLOC_EXPLICITLY_TYPED(n, bytes, d) \
bytes             105 gc/include/gc_typed.h 	GC_calloc_explicitly_typed(n, bytes, d)
bytes             581 gc/include/private/gc_priv.h # define SMALL_OBJ(bytes) ((bytes) <= (MAXOBJBYTES - EXTRA_BYTES))
bytes             582 gc/include/private/gc_priv.h # define ADD_SLOP(bytes) ((bytes) + EXTRA_BYTES)
bytes             928 gc/include/private/gc_priv.h #   define MAP_ENTRY(map, bytes) (map)[bytes]
bytes            1502 gc/include/private/gc_priv.h ptr_t GC_scratch_alloc GC_PROTO((word bytes));
bytes            1691 gc/include/private/gc_priv.h void GC_add_to_heap GC_PROTO((struct hblk *p, word bytes));
bytes            1770 gc/include/private/gc_priv.h   void GC_unmap(ptr_t start, word bytes);
bytes            1771 gc/include/private/gc_priv.h   void GC_remap(ptr_t start, word bytes);
bytes            2219 gc/include/private/gcconfig.h #   define GET_MEM(bytes) HBLKPTR(real_malloc((size_t)bytes + GC_page_size) \
bytes            2223 gc/include/private/gcconfig.h 	      void * os2_alloc(size_t bytes);
bytes            2224 gc/include/private/gcconfig.h #     define GET_MEM(bytes) HBLKPTR((ptr_t)os2_alloc((size_t)bytes \
bytes            2231 gc/include/private/gcconfig.h #       define GET_MEM(bytes) HBLKPTR((size_t) \
bytes            2232 gc/include/private/gcconfig.h 					      calloc(1, (size_t)bytes + GC_page_size) \
bytes            2237 gc/include/private/gcconfig.h #         define GET_MEM(bytes) (struct hblk *)GC_win32_get_mem(bytes)
bytes            2243 gc/include/private/gcconfig.h #               define GET_MEM(bytes) HBLKPTR( \
bytes            2244 gc/include/private/gcconfig.h 			    GC_MacTemporaryNewPtr(bytes + GC_page_size, true) \
bytes            2247 gc/include/private/gcconfig.h #         	    define GET_MEM(bytes) HBLKPTR( \
bytes            2248 gc/include/private/gcconfig.h 				NewPtrClear(bytes + GC_page_size) + GC_page_size-1)
bytes            2253 gc/include/private/gcconfig.h #	      define GET_MEM(bytes) (struct hblk *)GC_wince_get_mem(bytes)
bytes            2257 gc/include/private/gcconfig.h #		define GET_MEM(bytes) HBLKPTR((size_t) \
bytes            2258 gc/include/private/gcconfig.h 			  GC_amiga_get_mem((size_t)bytes + GC_page_size) \
bytes            2262 gc/include/private/gcconfig.h #               define GET_MEM(bytes) (struct hblk *)GC_unix_get_mem(bytes)
bytes              63 gc/include/private/pthread_support.h #	define SMALL_ENOUGH(bytes) (ADD_SLOP(bytes) <= \
bytes            1523 gc/os_dep.c    ptr_t GC_unix_get_mem(bytes)
bytes            1524 gc/os_dep.c    word bytes;
bytes            1531 gc/os_dep.c        if ((SBRK_ARG_T)bytes < 0) return(0); /* too big */
bytes            1537 gc/os_dep.c            result = (ptr_t)sbrk((SBRK_ARG_T)bytes);
bytes            1541 gc/os_dep.c            result = (ptr_t)sbrk(GC_page_size + (SBRK_ARG_T)bytes);
bytes            1544 gc/os_dep.c        my_brk_val = result + bytes + GC_page_size;	/* Always page aligned */
bytes            1581 gc/os_dep.c    ptr_t GC_unix_get_mem(bytes)
bytes            1582 gc/os_dep.c    word bytes;
bytes            1597 gc/os_dep.c        if (bytes & (GC_page_size -1)) ABORT("Bad GET_MEM arg");
bytes            1598 gc/os_dep.c        result = mmap(last_addr, bytes, PROT_READ | PROT_WRITE | OPT_PROT_EXEC,
bytes            1601 gc/os_dep.c        last_addr = (ptr_t)result + bytes + GC_page_size - 1;
bytes            1610 gc/os_dep.c    	return GC_unix_get_mem(bytes);
bytes            1619 gc/os_dep.c    ptr_t GC_unix_get_mem(bytes)
bytes            1620 gc/os_dep.c    word bytes;
bytes            1632 gc/os_dep.c        if ((SBRK_ARG_T)bytes < 0) return(0); /* too big */
bytes            1636 gc/os_dep.c        result = (ptr_t)sbrk((SBRK_ARG_T)bytes);
bytes            1652 gc/os_dep.c    void * os2_alloc(size_t bytes)
bytes            1656 gc/os_dep.c        if (DosAllocMem(&result, bytes, PAG_EXECUTE | PAG_READ |
bytes            1661 gc/os_dep.c        if (result == 0) return(os2_alloc(bytes));
bytes            1682 gc/os_dep.c    ptr_t GC_win32_get_mem(bytes)
bytes            1683 gc/os_dep.c    word bytes;
bytes            1691 gc/os_dep.c            result = (ptr_t) GlobalAlloc(0, bytes + HBLKSIZE);
bytes            1702 gc/os_dep.c            result = (ptr_t) VirtualAlloc(NULL, bytes + 1,
bytes            1735 gc/os_dep.c    ptr_t GC_wince_get_mem(bytes)
bytes            1736 gc/os_dep.c    word bytes;
bytes            1742 gc/os_dep.c        bytes = (bytes + GC_page_size-1) & ~(GC_page_size-1);
bytes            1748 gc/os_dep.c    	    >= bytes) {
bytes            1756 gc/os_dep.c    	word res_bytes = (bytes + GC_sysinfo.dwAllocationGranularity-1)
bytes            1775 gc/os_dep.c        result = (ptr_t) VirtualAlloc(result, bytes,
bytes            1780 gc/os_dep.c    	GC_heap_lengths[i] += bytes;
bytes            1806 gc/os_dep.c    ptr_t GC_unmap_start(ptr_t start, word bytes)
bytes            1812 gc/os_dep.c        if (result + GC_page_size > start + bytes) return 0;
bytes            1818 gc/os_dep.c    ptr_t GC_unmap_end(ptr_t start, word bytes)
bytes            1820 gc/os_dep.c        ptr_t end_addr = start + bytes;
bytes            1836 gc/os_dep.c    void GC_unmap(ptr_t start, word bytes)
bytes            1838 gc/os_dep.c        ptr_t start_addr = GC_unmap_start(start, bytes);
bytes            1839 gc/os_dep.c        ptr_t end_addr = GC_unmap_end(start, bytes);
bytes            1871 gc/os_dep.c    void GC_remap(ptr_t start, word bytes)
bytes            1873 gc/os_dep.c        ptr_t start_addr = GC_unmap_start(start, bytes);
bytes            1874 gc/os_dep.c        ptr_t end_addr = GC_unmap_end(start, bytes);
bytes             267 gc/pthread_support.c GC_PTR GC_local_malloc(size_t bytes)
bytes             269 gc/pthread_support.c     if (EXPECT(!SMALL_ENOUGH(bytes),0)) {
bytes             270 gc/pthread_support.c         return(GC_malloc(bytes));
bytes             272 gc/pthread_support.c 	int index = INDEX_FROM_BYTES(bytes);
bytes             306 gc/pthread_support.c             return GC_malloc(bytes);
bytes             309 gc/pthread_support.c 	    if (*my_fl == 0) return GC_oom_fn(bytes);
bytes             310 gc/pthread_support.c 	    return GC_local_malloc(bytes);
bytes             315 gc/pthread_support.c GC_PTR GC_local_malloc_atomic(size_t bytes)
bytes             317 gc/pthread_support.c     if (EXPECT(!SMALL_ENOUGH(bytes), 0)) {
bytes             318 gc/pthread_support.c         return(GC_malloc_atomic(bytes));
bytes             320 gc/pthread_support.c 	int index = INDEX_FROM_BYTES(bytes);
bytes             331 gc/pthread_support.c         return GC_malloc_atomic(bytes);
bytes             337 gc/pthread_support.c 	    if (*my_fl == 0) return GC_oom_fn(bytes);
bytes             338 gc/pthread_support.c 	    return GC_local_malloc_atomic(bytes);
bytes             353 gc/pthread_support.c GC_PTR GC_local_gcj_malloc(size_t bytes,
bytes             357 gc/pthread_support.c     if (EXPECT(!SMALL_ENOUGH(bytes), 0)) {
bytes             358 gc/pthread_support.c         return GC_gcj_malloc(bytes, ptr_to_struct_containing_descr);
bytes             360 gc/pthread_support.c 	int index = INDEX_FROM_BYTES(bytes);
bytes             386 gc/pthread_support.c             return GC_gcj_malloc(bytes, ptr_to_struct_containing_descr);
bytes             389 gc/pthread_support.c 	    if (*my_fl == 0) return GC_oom_fn(bytes);
bytes             390 gc/pthread_support.c 	    return GC_local_gcj_malloc(bytes, ptr_to_struct_containing_descr);
bytes             873 gc/reclaim.c       register size_t bytes = WORDS_TO_BYTES(hhdr -> hb_sz);
bytes             877 gc/reclaim.c       			        (unsigned long)bytes,
bytes             879 gc/reclaim.c       bytes += HBLKSIZE-1;
bytes             880 gc/reclaim.c       bytes &= ~(HBLKSIZE-1);
bytes             883 gc/reclaim.c       ps->total_bytes += bytes;
bytes              47 src/core.c     static GC_PTR oom_handler(size_t bytes)
bytes              49 src/core.c         Scm_Panic("out of memory (%d).  aborting...", bytes);
bytes            3942 src/extlib.c     int bytes;
bytes            3951 src/extlib.c     bytes = SCM_INT_VALUE(bytes_scm);
bytes            3961 src/extlib.c     if (bytes < 0) Scm_Error("bytes must be non-negative integer: %d", bytes);
bytes            3962 src/extlib.c     if (bytes == 0) SCM_RETURN(Scm_MakeString("", 0, 0, 0));
bytes            3963 src/extlib.c     buf = SCM_NEW_ATOMIC2(char*, bytes);
bytes            3964 src/extlib.c     nread = Scm_Getz(buf, bytes, port);
bytes            1135 src/gauche.h       int bytes;                  /* actual bytes stored in this chunk.
bytes            1403 src/string.c       dstr->init.bytes = 0;
bytes            1416 src/string.c           size = dstr->init.bytes;
bytes            1417 src/string.c           dstr->tail->chunk->bytes = (int)(dstr->current - dstr->tail->chunk->data);
bytes            1419 src/string.c               size += chain->chunk->bytes;
bytes            1435 src/string.c           dstr->tail->chunk->bytes = (int)(dstr->current - dstr->tail->chunk->data);
bytes            1437 src/string.c           dstr->init.bytes = (int)(dstr->current - dstr->init.data);
bytes            1452 src/string.c       newchunk->bytes = 0;
bytes            1489 src/string.c           memcpy(bptr, dstr->init.data, dstr->init.bytes);
bytes            1490 src/string.c           bptr += dstr->init.bytes;
bytes            1492 src/string.c               memcpy(bptr, chain->chunk->data, chain->chunk->bytes);
bytes            1493 src/string.c               bptr += chain->chunk->bytes;
bytes            1568 src/string.c           fprintf(out, "  chunk0[%3d] = \"", dstr->init.bytes);
bytes            1569 src/string.c           fwrite(dstr->init.data, 1, dstr->init.bytes, out);
bytes            1572 src/string.c               int size = (chain->next? chain->chunk->bytes : (int)(dstr->current - dstr->tail->chunk->data));