Symbol: BIOSDISK_SECSIZE
stand/boot/pc32/libi386/biosdisk.c
1043
((u_int32_t)VTOP(bbuf + x * BIOSDISK_SECSIZE - 1) & 0xffff8000)) {
stand/boot/pc32/libi386/biosdisk.c
1046
breg = bbuf + x * BIOSDISK_SECSIZE;
stand/boot/pc32/libi386/biosdisk.c
1144
bcopy(breg, p, x * BIOSDISK_SECSIZE);
stand/boot/pc32/libi386/biosdisk.c
1145
p += (x * BIOSDISK_SECSIZE);
stand/boot/pc32/libi386/biosdisk.c
1183
((u_int32_t)VTOP(bbuf + x * BIOSDISK_SECSIZE - 1) & 0xffff8000)) {
stand/boot/pc32/libi386/biosdisk.c
1186
breg = bbuf + x * BIOSDISK_SECSIZE;
stand/boot/pc32/libi386/biosdisk.c
1217
bcopy(p, breg, x * BIOSDISK_SECSIZE);
stand/boot/pc32/libi386/biosdisk.c
1218
p += (x * BIOSDISK_SECSIZE);
stand/boot/pc32/libi386/biosdisk.c
449
char buf[BIOSDISK_SECSIZE*2];
stand/boot/pc32/libi386/biosdisk.c
56
#define BUFSIZE (4 * BIOSDISK_SECSIZE)
stand/boot/pc32/libi386/biosdisk.c
775
char buf[BIOSDISK_SECSIZE];
stand/boot/pc32/libi386/biosdisk.c
956
char fragbuf[BIOSDISK_SECSIZE];
stand/boot/pc32/libi386/biosdisk.c
959
fragsize = size % BIOSDISK_SECSIZE;
stand/boot/pc32/libi386/biosdisk.c
961
if (size % BIOSDISK_SECSIZE)
stand/boot/pc32/libi386/biosdisk.c
969
blks = size / BIOSDISK_SECSIZE;
stand/boot/pc32/libi386/biosdisk.c
980
fragsize, dblk, blks, buf + (blks * BIOSDISK_SECSIZE));
stand/boot/pc32/libi386/biosdisk.c
985
bcopy(fragbuf, buf + (blks * BIOSDISK_SECSIZE), fragsize);
stand/boot/pc32/libi386/biosdisk.c
991
blks = size / BIOSDISK_SECSIZE;
stand/boot/pc32/libi386/libi386.h
83
#define BOUNCEBUF_SECTS (BOUNCEBUF_SIZE / BIOSDISK_SECSIZE)