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

/freebsd-12-stable/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-12-stable/release/powerpc/
H A Dmake-memstick.sh18 BLOCKSIZE=10240
/freebsd-12-stable/usr.bin/login/
H A Dlogin.conf29 :setenv=BLOCKSIZE=K:\
132 # :setenv=BLOCKSIZE=K:\
/freebsd-12-stable/usr.sbin/ctld/
H A Dtoken.l57 blocksize { return BLOCKSIZE; }
H A Dparse.y63 %token ALIAS AUTH_GROUP AUTH_TYPE BACKEND BLOCKSIZE CHAP CHAP_MUTUAL
974 lun_blocksize: BLOCKSIZE STR
/freebsd-12-stable/contrib/netbsd-tests/lib/librumphijack/
H A Dt_tcpip.sh143 ssh -T -F ssh_config 127.0.0.1 env BLOCKSIZE=512 \
145 atf_check -s exit:0 -o file:ssh.out env BLOCKSIZE=512 \
/freebsd-12-stable/release/picobsd/mfs_tree/etc/
H A Dlogin.conf44 :setenv=MAIL=/var/mail/$,BLOCKSIZE=K,EDITOR=/usr/bin/ee:\
/freebsd-12-stable/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-12-stable/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-12-stable/sbin/savecore/
H A Dsavecore.c385 #define BLOCKSIZE (1<<12) macro
386 #define BLOCKMASK (~(BLOCKSIZE-1))
417 for (hs = nw; hs < nr; hs += BLOCKSIZE) {
422 if (he >= hs + BLOCKSIZE)
432 * BLOCKSIZE bytes away, we're at the end
435 if (hs + BLOCKSIZE > nr)
/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v05.c447 #define BLOCKSIZE (128 KB) /* define, for static allocation */ macro
2657 BYTE litBuffer[BLOCKSIZE + WILDCOPY_OVERLENGTH];
2693 sizeof(ZSTDv05_DCtx) - (BLOCKSIZE+WILDCOPY_OVERLENGTH + ZSTDv05_frameHeaderSize_max)); /* no need to copy workspace */
2857 const void* src, size_t srcSize) /* note : srcSize < BLOCKSIZE */
2893 if (litSize > BLOCKSIZE) return ERROR(corruption_detected);
2979 if (litSize > BLOCKSIZE) return ERROR(corruption_detected);
3379 if (srcSize >= BLOCKSIZE) return ERROR(srcSize_wrong);
3903 size_t neededInSize = BLOCKSIZE; /* a block is never > BLOCKSIZE */
3981 if (zbc->outStart + BLOCKSIZE > zb
[all...]
H A Dzstd_v04.c398 #define BLOCKSIZE (128 KB) /* define, for static allocation */ macro
2561 BYTE litBuffer[BLOCKSIZE + 8 /* margin for wildcopy */];
2685 const void* src, size_t srcSize) /* note : srcSize < BLOCKSIZE */
2697 size_t litSize = BLOCKSIZE;
2723 if (litSize > BLOCKSIZE) return ERROR(corruption_detected);
3497 size_t const neededInSize = BLOCKSIZE; /* a block is never > BLOCKSIZE */
3580 if (zbc->outStart + BLOCKSIZE > zbc->outBuffSize)
3610 size_t ZBUFFv04_recommendedDInSize() { return BLOCKSIZE + 3; }
3611 size_t ZBUFFv04_recommendedDOutSize() { return BLOCKSIZE; }
[all...]
H A Dzstd_v03.c2342 #define BLOCKSIZE (128 KB) /* define, for static allocation */ macro
2348 #define WORKPLACESIZE (BLOCKSIZE*3)
2441 BYTE litBuffer[BLOCKSIZE + 8 /* margin for wildcopy */];
2508 size_t litSize = BLOCKSIZE;
2535 if (litSize > BLOCKSIZE) return ERROR(corruption_detected);
H A Dzstd_v02.c2701 #define BLOCKSIZE (128 KB) /* define, for static allocation */ macro
2707 #define WORKPLACESIZE (BLOCKSIZE*3)
2800 BYTE litBuffer[BLOCKSIZE + 8 /* margin for wildcopy */];
2867 size_t litSize = BLOCKSIZE;
2894 if (litSize > BLOCKSIZE) return ERROR(corruption_detected);
H A Dzstd_v01.c1313 #define BLOCKSIZE (128 KB) /* define, for static allocation */ macro
1315 #define WORKPLACESIZE (BLOCKSIZE*3)
/freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/
H A Dftp.c598 #define BLOCKSIZE (1024 * 1024 * 10) macro
616 if (len > BLOCKSIZE)
617 len = BLOCKSIZE;
/freebsd-12-stable/bin/ls/tests/
H A Dls_tests.sh923 export BLOCKSIZE=512

Completed in 132 milliseconds