Searched refs:CHUNKSIZE (Results 1 – 5 of 5) sorted by relevance
/titanic_44/usr/src/lib/libc/port/threads/ |
H A D | alloc.c | 56 #define CHUNKSIZE (64 * 1024) macro 115 if (__systemcall6(&rval, SYS_mmap, CHUNKSIZE, BASE_SIZE, in initial_allocation() 200 ptr = mmap((void *)CHUNKSIZE, size, prot, in lmalloc() 235 bsize = CHUNKSIZE * bp->chunks; in lmalloc() 237 ptr = mmap((void *)CHUNKSIZE, bsize, prot, in lmalloc() 281 if (((uintptr_t)ptr & (CHUNKSIZE - 1)) != 0) in lfree()
|
/titanic_44/usr/src/lib/libumem/common/ |
H A D | vmem_mmap.c | 41 #define CHUNKSIZE (64*1024) /* 64 kilobytes */ macro 92 buf = mmap((void *)CHUNKSIZE, size, FREE_PROT, FREE_FLAGS | MAP_ALIGN, in vmem_mmap_top_alloc() 122 mmap_heap = vmem_init("mmap_top", CHUNKSIZE, in vmem_mmap_arena()
|
/titanic_44/usr/src/cmd/logadm/ |
H A D | err.c | 170 #define CHUNKSIZE 8192 /* for copying stderr */ macro 177 char buf[CHUNKSIZE]; in err_fromfd() 180 while ((count = read(fd, buf, CHUNKSIZE)) > 0) { in err_fromfd()
|
/titanic_44/usr/src/cmd/fs.d/pcfs/fsck/ |
H A D | clusters.c | 394 #define CHUNKSIZE 1024 macro 407 pool = (ClusterInfo *)malloc(sizeof (ClusterInfo) * CHUNKSIZE); in newClusterInfo() 415 for (i = 0; i < CHUNKSIZE - 1; i++) in newClusterInfo() 418 pool[CHUNKSIZE-1].nextfree = NULL; in newClusterInfo()
|
/titanic_44/usr/src/cmd/fs.d/ufs/fssnap/ |
H A D | fssnap.c | 85 #define CHUNKSIZE (4) macro 174 case CHUNKSIZE: in main()
|