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

/freebsd-10.1-release/release/ia64/
H A Dmake-memstick.sh16 BLOCKSIZE=10240
/freebsd-10.1-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.1-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.1-release/release/powerpc/
H A Dmake-memstick.sh16 BLOCKSIZE=10240
/freebsd-10.1-release/usr.sbin/ctld/
H A Dtoken.l55 blocksize { return BLOCKSIZE; }
H A Dparse.y60 %token ALIAS AUTH_GROUP AUTH_TYPE BACKEND BLOCKSIZE CHAP CHAP_MUTUAL
599 lun_blocksize: BLOCKSIZE NUM
/freebsd-10.1-release/etc/
H A Dlogin.conf29 :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\
122 # :setenv=MAIL=/var/mail/$,BLOCKSIZE=K:\
/freebsd-10.1-release/release/picobsd/mfs_tree/etc/
H A Dlogin.conf44 :setenv=MAIL=/var/mail/$,BLOCKSIZE=K,EDITOR=/usr/bin/ee:\
/freebsd-10.1-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.1-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.1-release/sbin/savecore/
H A Dsavecore.c291 #define BLOCKSIZE (1<<12) macro
292 #define BLOCKMASK (~(BLOCKSIZE-1))
323 for (hs = nw; hs < nr; hs += BLOCKSIZE) {
328 if (he >= hs + BLOCKSIZE)
338 * BLOCKSIZE bytes away, we're at the end
341 if (hs + BLOCKSIZE > nr)
/freebsd-10.1-release/usr.bin/truss/
H A Dsyscalls.c530 #define BLOCKSIZE 1024 macro
546 totalsize = size = max ? (max + 1) : BLOCKSIZE;
564 if (totalsize < MAXSIZE - BLOCKSIZE && max == 0) {
565 totalsize += BLOCKSIZE;
567 size = BLOCKSIZE;
/freebsd-10.1-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 188 milliseconds