Searched refs:BLOCKSIZE (Results 1 - 13 of 13) sorted by relevance

/freebsd-9.3-release/release/ia64/
H A Dmake-memstick.sh16 BLOCKSIZE=10240
/freebsd-9.3-release/tools/regression/ufs/uprintf/
H A Dufs_uprintf.c65 #define BLOCKSIZE 1024 macro
70 char block[BLOCKSIZE];
82 bzero(block, BLOCKSIZE);
85 len = write(fd, block, BLOCKSIZE);
88 if (len != BLOCKSIZE) {
90 BLOCKSIZE, len);
109 len = write(fd, block, BLOCKSIZE);
/freebsd-9.3-release/release/powerpc/
H A Dmake-memstick.sh16 BLOCKSIZE=10240
45 # Use $BLOCKSIZE for transfers to improve efficiency. When calculating
51 blocks=$(($filesize / ${BLOCKSIZE} + 1728))
52 dd if=/dev/zero of=${2} bs=${BLOCKSIZE} count=${blocks}
69 dd if=${tempfile} of=/dev/${unit}s3 bs=$BLOCKSIZE conv=sync
/freebsd-9.3-release/sys/dev/random/
H A Drandomdev_soft.h39 #define BLOCKSIZE 256 macro
H A Dyarrow.c49 RANDOM_CHECK_UINT(fastthresh, BLOCKSIZE/4, BLOCKSIZE);
50 RANDOM_CHECK_UINT(slowthresh, BLOCKSIZE/4, BLOCKSIZE);
134 &random_state.pool[0].thresh, (3*BLOCKSIZE)/4,
141 &random_state.pool[1].thresh, BLOCKSIZE,
154 random_state.pool[0].thresh = (3*BLOCKSIZE)/4;
155 random_state.pool[1].thresh = BLOCKSIZE;
/freebsd-9.3-release/etc/
H A Dlogin.conf29 :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\
122 # :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\
/freebsd-9.3-release/bin/sh/
H A Dmkinit.c84 #define BLOCKSIZE 512 macro
95 char text[BLOCKSIZE];
427 text->nleft = BLOCKSIZE - 1;
442 fwrite(bp->text, sizeof (char), BLOCKSIZE, fp);
443 fwrite(bp->text, sizeof (char), BLOCKSIZE - text->nleft, fp);
/freebsd-9.3-release/release/picobsd/mfs_tree/etc/
H A Dlogin.conf44 :setenv=MAIL=/var/mail/$,BLOCKSIZE=K,EDITOR=/usr/bin/ee:\
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dmd5.c129 /* Important: BLOCKSIZE must be a multiple of 64. */
130 #define BLOCKSIZE 4096 macro
132 char buffer[BLOCKSIZE + 72];
141 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
150 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
154 while (sum < BLOCKSIZE && n != 0);
162 /* Process buffer with BLOCKSIZE bytes. Note that
163 BLOCKSIZE % 64 == 0
165 md5_process_block (buffer, BLOCKSIZE, &ctx);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dmd5.c129 /* Important: BLOCKSIZE must be a multiple of 64. */
130 #define BLOCKSIZE 4096 macro
132 char buffer[BLOCKSIZE + 72];
141 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
150 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
154 while (sum < BLOCKSIZE && n != 0);
162 /* Process buffer with BLOCKSIZE bytes. Note that
163 BLOCKSIZE % 64 == 0
165 md5_process_block (buffer, BLOCKSIZE, &ctx);
/freebsd-9.3-release/sbin/savecore/
H A Dsavecore.c224 #define BLOCKSIZE (1<<12) macro
225 #define BLOCKMASK (~(BLOCKSIZE-1))
256 for (hs = nw; hs < nr; hs += BLOCKSIZE) {
261 if (he >= hs + BLOCKSIZE)
271 * BLOCKSIZE bytes away, we're at the end
274 if (hs + BLOCKSIZE > nr)
/freebsd-9.3-release/release/scripts/
H A DdoFS.sh8 export BLOCKSIZE=512
/freebsd-9.3-release/usr.bin/truss/
H A Dsyscalls.c516 #define BLOCKSIZE 1024 macro
532 totalsize = size = max ? (max + 1) : BLOCKSIZE;
550 if (totalsize < MAXSIZE - BLOCKSIZE && max == 0) {
551 totalsize += BLOCKSIZE;
553 size = BLOCKSIZE;

Completed in 208 milliseconds