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

/freebsd-10.0-release/release/ia64/
H A Dmake-memstick.sh16 BLOCKSIZE=10240
/freebsd-10.0-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-10.0-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-10.0-release/sys/dev/random/
H A Dyarrow.c61 uint8_t byte[BLOCKSIZE];
62 uint64_t qword[BLOCKSIZE/sizeof(uint64_t)];
81 RANDOM_CHECK_UINT(fastthresh, (BLOCKSIZE*8)/4, (BLOCKSIZE*8)); /* Bit counts */
82 RANDOM_CHECK_UINT(slowthresh, (BLOCKSIZE*8)/4, (BLOCKSIZE*8)); /* Bit counts */
193 &random_state.pool[0].thresh, (3*(BLOCKSIZE*8))/4,
200 &random_state.pool[1].thresh, (BLOCKSIZE*8),
213 random_state.pool[0].thresh = (3*(BLOCKSIZE*8))/4;
214 random_state.pool[1].thresh = (BLOCKSIZE*
[all...]
H A Dhash.h33 #define BLOCKSIZE 16 /* (in bytes) == 128 bits */ macro
/freebsd-10.0-release/usr.sbin/ctld/
H A Dtoken.l54 blocksize { return BLOCKSIZE; }
H A Dparse.y60 %token ALIAS AUTH_GROUP BACKEND BLOCKSIZE CHAP CHAP_MUTUAL CLOSING_BRACKET
454 blocksize_statement: BLOCKSIZE NUM
/freebsd-10.0-release/etc/
H A Dlogin.conf29 :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\
122 # :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\
/freebsd-10.0-release/release/picobsd/mfs_tree/etc/
H A Dlogin.conf44 :setenv=MAIL=/var/mail/$,BLOCKSIZE=K,EDITOR=/usr/bin/ee:\
/freebsd-10.0-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-10.0-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-10.0-release/sbin/savecore/
H A Dsavecore.c287 #define BLOCKSIZE (1<<12) macro
288 #define BLOCKMASK (~(BLOCKSIZE-1))
319 for (hs = nw; hs < nr; hs += BLOCKSIZE) {
324 if (he >= hs + BLOCKSIZE)
334 * BLOCKSIZE bytes away, we're at the end
337 if (hs + BLOCKSIZE > nr)
/freebsd-10.0-release/usr.bin/truss/
H A Dsyscalls.c520 #define BLOCKSIZE 1024 macro
536 totalsize = size = max ? (max + 1) : BLOCKSIZE;
554 if (totalsize < MAXSIZE - BLOCKSIZE && max == 0) {
555 totalsize += BLOCKSIZE;
557 size = BLOCKSIZE;
/freebsd-10.0-release/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c598 #define BLOCKSIZE (1024 * 1024 * 10) macro
616 if (len > BLOCKSIZE)
617 len = BLOCKSIZE;

Completed in 124 milliseconds