| /freebsd-12-stable/contrib/netbsd-tests/bin/df/ |
| D | getmntinfo.c | 94 #define BSIZE 512 in setup_filer() macro 97 .f_bsize = BSIZE, in setup_filer() 98 .f_frsize = BSIZE, in setup_filer() 99 .f_blocks = TOTAL / BSIZE, in setup_filer() 100 .f_bfree = (TOTAL - USED) / BSIZE, in setup_filer() 101 .f_bavail = (TOTAL - USED) / BSIZE, in setup_filer() 107 #undef BSIZE in setup_filer() 125 #define BSIZE 4096 /* Guess */ in setup_ld0g() macro 129 .f_bsize = BSIZE, in setup_ld0g() 130 .f_frsize = BSIZE, in setup_ld0g() [all …]
|
| /freebsd-12-stable/lib/libc/db/hash/ |
| D | hash_page.c | 88 ((u_int16_t *)(P))[1] = hashp->BSIZE - 3 * sizeof(u_int16_t); \ 89 ((u_int16_t *)(P))[2] = hashp->BSIZE; \ 141 newoff = hashp->BSIZE; in __delpair() 195 copyto = (u_int16_t)hashp->BSIZE; in __split_page() 196 off = (u_int16_t)hashp->BSIZE; in __split_page() 341 scopyto = hashp->BSIZE; in ugly_split() 349 off = hashp->BSIZE; in ugly_split() 527 size = hashp->BSIZE; in __get_page() 554 max = hashp->BSIZE >> 2; /* divide by 4 */ in __get_page() 581 size = hashp->BSIZE; in __put_page() [all …]
|
| D | hash.c | 174 (hashp->BSIZE << BYTE_SHIFT) - 1) >> in __hash_open() 211 "BUCKET SIZE ", hashp->BSIZE, in __hash_open() 281 hashp->BSIZE = DEF_BUCKET_SIZE; in init_hash() 295 hashp->BSIZE = statbuf.st_blksize; in init_hash() 296 if (hashp->BSIZE > MAX_BSIZE) in init_hash() 297 hashp->BSIZE = MAX_BSIZE; in init_hash() 298 hashp->BSHIFT = __log2(hashp->BSIZE); in init_hash() 305 hashp->BSIZE = 1 << hashp->BSHIFT; in init_hash() 306 if (hashp->BSIZE > MAX_BSIZE) { in init_hash() 588 off = hashp->BSIZE; in hash_access() [all …]
|
| D | hash_bigkey.c | 255 FREESPACE(bp) = hashp->BSIZE - PAGE_META(n); in __big_delete() 256 OFFSET(bp) = hashp->BSIZE; in __big_delete() 288 for (bytes = hashp->BSIZE - bp[ndx]; in __find_bigpair() 290 bytes = hashp->BSIZE - bp[ndx]) { in __find_bigpair() 457 mylen = hashp->BSIZE - bp[1]; in collect_data() 523 mylen = hashp->BSIZE - bp[1]; in collect_key()
|
| D | hash_buf.c | 197 if ((bp->page = (char *)calloc(1, hashp->BSIZE)) == NULL) { in newbuf() 305 npages = (nbytes + hashp->BSIZE - 1) >> hashp->BSHIFT; in __buf_init() 340 (void)memset(bp->page, 0, hashp->BSIZE); in __buf_free()
|
| D | hash.h | 273 #define BSIZE hdr.bsize macro
|
| /freebsd-12-stable/usr.bin/tee/ |
| D | tee.c | 78 #define BSIZE (8 * 1024) in main() macro 96 if ((buf = malloc(BSIZE)) == NULL) in main() 114 while ((rval = read(STDIN_FILENO, buf, BSIZE)) > 0) in main()
|
| /freebsd-12-stable/usr.bin/rs/ |
| D | rs.c | 334 #define BSIZE (LINE_MAX * 2) macro 335 static char ibuf[BSIZE]; 341 static char *endblock = ibuf + BSIZE; in get_line() 359 if (!(curline = (char *) malloc(BSIZE))) in get_line() 361 endblock = curline + BSIZE; in get_line()
|
| /freebsd-12-stable/tests/sys/cddl/zfs/bin/ |
| D | file_trunc.c | 47 #define BSIZE 512 macro 51 static size_t bsize = BSIZE;
|
| /freebsd-12-stable/usr.sbin/bluetooth/sdpcontrol/ |
| D | search.c | 59 #define BSIZE 256 /* one attribute buffer size */ macro 60 static uint8_t buffer[NRECS * attrs_len][BSIZE]; 630 values[n].vlen = BSIZE; in do_sdp_search()
|
| /freebsd-12-stable/crypto/openssl/apps/ |
| D | apps.c | 1377 #undef BSIZE in IMPLEMENT_LHASH_HASH_FN() 1378 #define BSIZE 256 in IMPLEMENT_LHASH_HASH_FN() macro 1438 char buf[1][BSIZE]; in save_serial() 1448 if (j >= BSIZE) { in save_serial() 1454 OPENSSL_strlcpy(buf[0], serialfile, BSIZE); in save_serial() 1488 char buf[2][BSIZE]; in rotate_serial() 1495 if (j + 1 >= BSIZE) { in rotate_serial() 1558 char buf[BSIZE]; in load_index() 1645 char buf[3][BSIZE]; in save_index() 1650 if (j + 6 >= BSIZE) { in save_index() [all …]
|
| D | enc.c | 29 #undef BSIZE 31 #define BSIZE (8*1024) macro 107 int bsize = BSIZE, verbose = 0, debug = 0, olb64 = 0, nosalt = 0; in enc_main()
|
| /freebsd-12-stable/lib/libc/gen/ |
| D | getcap.c | 55 #define BSIZE 1024 macro 651 char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE]; in cgetnext()
|
| /freebsd-12-stable/crypto/heimdal/lib/roken/ |
| D | getcap.c | 56 #define BSIZE 1024 727 char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
|
| /freebsd-12-stable/sys/crypto/des/ |
| D | des_locl.h | 67 #define BSIZE (MAXWRITE+4) macro
|
| /freebsd-12-stable/contrib/ncurses/ncurses/tinfo/ |
| D | read_termcap.c | 137 #define BSIZE 1024 macro
|
| /freebsd-12-stable/contrib/binutils/ld/ |
| D | ChangeLog-0001 | 783 * ldmain.c (main): Rename BSIZE to BufferSize to avoid collision 800 * ldmain.c (main): Declare BSIZE as static.
|