Symbol: BSIZE
crypto/libressl/apps/openssl/enc.c
332
int bsize = BSIZE;
lib/libc/db/hash/hash.c
171
(hashp->BSIZE << BYTE_SHIFT) - 1) >>
lib/libc/db/hash/hash.c
208
"BUCKET SIZE ", hashp->BSIZE,
lib/libc/db/hash/hash.c
278
hashp->BSIZE = DEF_BUCKET_SIZE;
lib/libc/db/hash/hash.c
292
hashp->BSIZE = NOM_BSIZE;
lib/libc/db/hash/hash.c
293
if (hashp->BSIZE > MAX_BSIZE)
lib/libc/db/hash/hash.c
294
hashp->BSIZE = MAX_BSIZE;
lib/libc/db/hash/hash.c
295
hashp->BSHIFT = __log2(hashp->BSIZE);
lib/libc/db/hash/hash.c
302
hashp->BSIZE = 1 << hashp->BSHIFT;
lib/libc/db/hash/hash.c
303
if (hashp->BSIZE > MAX_BSIZE) {
lib/libc/db/hash/hash.c
580
off = hashp->BSIZE;
lib/libc/db/hash/hash.c
612
off = hashp->BSIZE;
lib/libc/db/hash/hash.c
634
off = hashp->BSIZE;
lib/libc/db/hash/hash.c
771
key->size = (ndx > 1 ? bp[ndx - 1] : hashp->BSIZE) - bp[ndx];
lib/libc/db/hash/hash_bigkey.c
250
FREESPACE(bp) = hashp->BSIZE - PAGE_META(n);
lib/libc/db/hash/hash_bigkey.c
251
OFFSET(bp) = hashp->BSIZE;
lib/libc/db/hash/hash_bigkey.c
283
for (bytes = hashp->BSIZE - bp[ndx];
lib/libc/db/hash/hash_bigkey.c
285
bytes = hashp->BSIZE - bp[ndx]) {
lib/libc/db/hash/hash_bigkey.c
452
mylen = hashp->BSIZE - bp[1];
lib/libc/db/hash/hash_bigkey.c
518
mylen = hashp->BSIZE - bp[1];
lib/libc/db/hash/hash_buf.c
192
if ((bp->page = (char *)calloc(1, hashp->BSIZE)) == NULL) {
lib/libc/db/hash/hash_buf.c
300
npages = (nbytes + hashp->BSIZE - 1) >> hashp->BSHIFT;
lib/libc/db/hash/hash_buf.c
335
memset(bp->page, 0, hashp->BSIZE);
lib/libc/db/hash/hash_page.c
136
newoff = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
190
copyto = (uint16_t)hashp->BSIZE;
lib/libc/db/hash/hash_page.c
191
off = (uint16_t)hashp->BSIZE;
lib/libc/db/hash/hash_page.c
336
scopyto = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
344
off = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
522
size = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
549
max = hashp->BSIZE >> 2; /* divide by 4 */
lib/libc/db/hash/hash_page.c
574
size = hashp->BSIZE;
lib/libc/db/hash/hash_page.c
583
max = hashp->BSIZE >> 2; /* divide by 4 */
lib/libc/db/hash/hash_page.c
617
if ((ip = (uint32_t *)malloc(hashp->BSIZE)) == NULL)
lib/libc/db/hash/hash_page.c
624
hashp->BSIZE - clearbytes);
lib/libc/db/hash/hash_page.c
660
free_bit = (max_free - 1) & ((hashp->BSIZE << BYTE_SHIFT) - 1);
lib/libc/db/hash/hash_page.c
671
in_use_bits = (hashp->BSIZE << BYTE_SHIFT) - 1;
lib/libc/db/hash/hash_page.c
675
((hashp->BSIZE << BYTE_SHIFT) - 1);
lib/libc/db/hash/hash_page.c
707
if (free_bit == (hashp->BSIZE << BYTE_SHIFT) - 1) {
lib/libc/db/hash/hash_page.c
774
bit = 1 + bit + (i * (hashp->BSIZE << BYTE_SHIFT));
lib/libc/db/hash/hash_page.c
817
free_bit = bit_address & ((hashp->BSIZE << BYTE_SHIFT) - 1);
lib/libc/db/hash/hash_page.c
83
((uint16_t *)(P))[1] = hashp->BSIZE - 3 * sizeof(uint16_t); \
lib/libc/db/hash/hash_page.c
84
((uint16_t *)(P))[2] = hashp->BSIZE; \
lib/libc/db/hash/hash_page.c
905
if ((hashp->mapp[ndx] = (uint32_t *)malloc(hashp->BSIZE)) == NULL)
lib/libc/gen/getcap.c
650
char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
sys/vfs/dirfs/dirfs.h
69
#define BMASK (BSIZE - 1)
sys/vfs/dirfs/dirfs_subr.c
763
biosize = BSIZE;
sys/vfs/dirfs/dirfs_vnops.c
631
bp = getcacheblk(vp, base_offset, BSIZE, 0);
sys/vfs/dirfs/dirfs_vnops.c
634
error = bread(vp, base_offset, BSIZE, &bp);
sys/vfs/dirfs/dirfs_vnops.c
647
len = BSIZE - offset;
sys/vfs/dirfs/dirfs_vnops.c
725
BSIZE, BSIZE, -1, -1, 0);
sys/vfs/dirfs/dirfs_vnops.c
735
len = BSIZE - offset;
sys/vfs/dirfs/dirfs_vnops.c
740
error = bread(vp, base_offset, BSIZE, &bp);
usr.bin/rs/rs.c
322
static char ibuf[BSIZE]; /* two screenfuls should do */
usr.bin/rs/rs.c
328
static char *endblock = ibuf + BSIZE;
usr.bin/rs/rs.c
346
if (!(curline = (char *) malloc(BSIZE)))
usr.bin/rs/rs.c
348
endblock = curline + BSIZE;
usr.bin/sdpquery/search.c
591
values[n].vlen = BSIZE;
usr.bin/sdpquery/search.c
90
static uint8_t buffer[NRECS * attrs_len][BSIZE];
usr.bin/tee/tee.c
100
while ((rval = read(STDIN_FILENO, buf, BSIZE)) > 0) {
usr.bin/tee/tee.c
81
if ((buf = malloc(BSIZE)) == NULL)