Symbol: BSIZE
crypto/heimdal/lib/roken/getcap.c
727
char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
crypto/krb5/src/plugins/kdb/db2/libdb2/hash/page.h
126
#define BIGPAGESIZE(P) ((P)->BSIZE - BIGPAGEOVERHEAD)
crypto/openssl/apps/enc.c
160
int bsize = BSIZE, verbose = 0, debug = 0, olb64 = 0, nosalt = 0;
crypto/openssl/apps/lib/apps.c
1491
#undef BSIZE
crypto/openssl/apps/lib/apps.c
1551
char buf[1][BSIZE];
crypto/openssl/apps/lib/apps.c
1561
if (j >= BSIZE) {
crypto/openssl/apps/lib/apps.c
1567
OPENSSL_strlcpy(buf[0], serialfile, BSIZE);
crypto/openssl/apps/lib/apps.c
1602
char buf[2][BSIZE];
crypto/openssl/apps/lib/apps.c
1609
if (j + 1 >= BSIZE) {
crypto/openssl/apps/lib/apps.c
1673
char buf[BSIZE];
crypto/openssl/apps/lib/apps.c
1763
char buf[3][BSIZE];
crypto/openssl/apps/lib/apps.c
1768
if (j + 6 >= BSIZE) {
crypto/openssl/apps/lib/apps.c
1811
char buf[5][BSIZE];
crypto/openssl/apps/lib/apps.c
1818
if (j + 6 >= BSIZE) {
lib/libc/db/hash/hash.c
168
(hashp->BSIZE << BYTE_SHIFT) - 1) >>
lib/libc/db/hash/hash.c
205
"BUCKET SIZE ", hashp->BSIZE,
lib/libc/db/hash/hash.c
275
hashp->BSIZE = DEF_BUCKET_SIZE;
lib/libc/db/hash/hash.c
289
hashp->BSIZE = statbuf.st_blksize;
lib/libc/db/hash/hash.c
290
if (hashp->BSIZE > MAX_BSIZE)
lib/libc/db/hash/hash.c
291
hashp->BSIZE = MAX_BSIZE;
lib/libc/db/hash/hash.c
292
hashp->BSHIFT = __log2(hashp->BSIZE);
lib/libc/db/hash/hash.c
299
hashp->BSIZE = 1 << hashp->BSHIFT;
lib/libc/db/hash/hash.c
300
if (hashp->BSIZE > MAX_BSIZE) {
lib/libc/db/hash/hash.c
586
off = hashp->BSIZE;
lib/libc/db/hash/hash.c
618
off = hashp->BSIZE;
lib/libc/db/hash/hash.c
640
off = hashp->BSIZE;
lib/libc/db/hash/hash.c
778
key->size = (ndx > 1 ? bp[ndx - 1] : hashp->BSIZE) - bp[ndx];
lib/libc/db/hash/hash_bigkey.c
249
FREESPACE(bp) = hashp->BSIZE - PAGE_META(n);
lib/libc/db/hash/hash_bigkey.c
250
OFFSET(bp) = hashp->BSIZE;
lib/libc/db/hash/hash_bigkey.c
282
for (bytes = hashp->BSIZE - bp[ndx];
lib/libc/db/hash/hash_bigkey.c
284
bytes = hashp->BSIZE - bp[ndx]) {
lib/libc/db/hash/hash_bigkey.c
451
mylen = hashp->BSIZE - bp[1];
lib/libc/db/hash/hash_bigkey.c
517
mylen = hashp->BSIZE - bp[1];
lib/libc/db/hash/hash_buf.c
191
if ((bp->page = (char *)calloc(1, hashp->BSIZE)) == NULL) {
lib/libc/db/hash/hash_buf.c
299
npages = (nbytes + hashp->BSIZE - 1) >> hashp->BSHIFT;
lib/libc/db/hash/hash_buf.c
334
(void)memset(bp->page, 0, hashp->BSIZE);
lib/libc/db/hash/hash_page.c
135
newoff = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
189
copyto = (u_int16_t)hashp->BSIZE;
lib/libc/db/hash/hash_page.c
190
off = (u_int16_t)hashp->BSIZE;
lib/libc/db/hash/hash_page.c
335
scopyto = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
343
off = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
521
size = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
548
max = hashp->BSIZE >> 2; /* divide by 4 */
lib/libc/db/hash/hash_page.c
575
size = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
585
max = hashp->BSIZE >> 2; /* divide by 4 */
lib/libc/db/hash/hash_page.c
621
if ((ip = (u_int32_t *)malloc(hashp->BSIZE)) == NULL)
lib/libc/db/hash/hash_page.c
628
hashp->BSIZE - clearbytes);
lib/libc/db/hash/hash_page.c
664
free_bit = (max_free - 1) & ((hashp->BSIZE << BYTE_SHIFT) - 1);
lib/libc/db/hash/hash_page.c
675
in_use_bits = (hashp->BSIZE << BYTE_SHIFT) - 1;
lib/libc/db/hash/hash_page.c
679
((hashp->BSIZE << BYTE_SHIFT) - 1);
lib/libc/db/hash/hash_page.c
711
if (free_bit == (hashp->BSIZE << BYTE_SHIFT) - 1) {
lib/libc/db/hash/hash_page.c
778
bit = 1 + bit + (i * (hashp->BSIZE << BYTE_SHIFT));
lib/libc/db/hash/hash_page.c
82
((u_int16_t *)(P))[1] = hashp->BSIZE - 3 * sizeof(u_int16_t); \
lib/libc/db/hash/hash_page.c
821
free_bit = bit_address & ((hashp->BSIZE << BYTE_SHIFT) - 1);
lib/libc/db/hash/hash_page.c
83
((u_int16_t *)(P))[2] = hashp->BSIZE; \
lib/libc/db/hash/hash_page.c
906
if ((hashp->mapp[ndx] = (u_int32_t *)malloc(hashp->BSIZE)) == NULL)
lib/libc/gen/getcap.c
647
char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
tests/sys/cddl/zfs/bin/file_trunc.c
49
static size_t bsize = BSIZE;
usr.bin/rs/rs.cc
292
static char ibuf[BSIZE];
usr.bin/rs/rs.cc
298
static char *endblock = ibuf + BSIZE;
usr.bin/rs/rs.cc
316
if (!(curline = (char *) malloc(BSIZE)))
usr.bin/rs/rs.cc
318
endblock = curline + BSIZE;
usr.bin/tee/tee.c
109
while ((rval = read(STDIN_FILENO, buf, BSIZE)) > 0)
usr.bin/tee/tee.c
84
if ((buf = malloc(BSIZE)) == NULL)
usr.sbin/bluetooth/sdpcontrol/search.c
60
static uint8_t buffer[NRECS * attrs_len][BSIZE];
usr.sbin/bluetooth/sdpcontrol/search.c
630
values[n].vlen = BSIZE;