HomeSort by: relevance | last modified time | path
    Searched defs:CHUNKSIZE (Results 1 - 5 of 5) sorted by relevancy

  /src/tests/fs/lfs/
util.h 19 #define CHUNKSIZE 300
  /src/usr.sbin/mdsetimage/
mdsetimage.c 58 #define CHUNKSIZE (64 * 1024)
185 char buf[CHUNKSIZE];
203 todo = (left_to_copy > CHUNKSIZE) ? CHUNKSIZE : left_to_copy;
  /src/games/fortune/strfile/
strfile.c 97 # define CHUNKSIZE 512
101 ptr = malloc(CHUNKSIZE * sizeof *ptr); \
102 else if (((sz) + 1) % CHUNKSIZE == 0) \
103 ptr = realloc(ptr, ((sz) + CHUNKSIZE) * sizeof *ptr); \
149 * CHUNKSIZE blocks; if the latter, we just write each pointer,
  /src/sbin/newfs_lfs/
newfs.c 110 /* CHUNKSIZE should be larger than MAXPHYS */
111 #define CHUNKSIZE (1024 * 1024)
118 char buf[CHUNKSIZE];
126 for (off = 0; finish - start < 10; off += CHUNKSIZE) {
127 if (pread(fd, buf, CHUNKSIZE, off) < 0)
  /src/sys/ufs/lfs/
lfs_segment.c 2337 #define CHUNKSIZE MAXPHYS
2363 while (i && cbp->b_bcount < CHUNKSIZE) {
2366 if (bp->b_bcount > (CHUNKSIZE - cbp->b_bcount))
2380 p = cbp->b_data = lfs_malloc(fs, CHUNKSIZE,

Completed in 18 milliseconds