Searched refs:bi_size (Results 1 - 24 of 24) sorted by relevance

/src/sys/arch/ews4800mips/include/
H A Dbootinfo.h37 size_t bi_size; member in struct:bootinfo
/src/sys/arch/cobalt/stand/boot/
H A Dbootinfo.c41 static int bi_size; variable in typeref:typename:int
53 bi_size = 0;
66 if (bi_size + size > BOOTINFO_SIZE)
82 bi_size += size;
/src/sys/arch/sgimips/stand/common/
H A Dbootinfo.c41 static int bi_size; /* current bootinfo size */ variable in typeref:typename:int
53 bi_size = 0;
64 if (bi_size + size > BOOTINFO_SIZE)
67 bi_size += size;
/src/sys/arch/mipsco/stand/common/
H A Dbootinfo.c40 static int bi_size; variable in typeref:typename:int
52 bi_size = 0;
64 if (bi_size + size > BOOTINFO_SIZE)
76 bi_size += size;
/src/sys/arch/mmeye/stand/boot/
H A Dbootinfo.c41 static int bi_size; variable in typeref:typename:int
53 bi_size = 0;
66 if (bi_size + size > BOOTINFO_SIZE)
82 bi_size += size;
/src/sys/arch/newsmips/stand/boot/
H A Dbootinfo.c39 static int bi_size; variable in typeref:typename:int
51 bi_size = 0;
62 if (bi_size + size > BOOTINFO_SIZE)
74 bi_size += size;
/src/sys/arch/pmax/stand/common/
H A Dbootinfo.c40 static int bi_size; variable in typeref:typename:int
51 bi_size = 0;
61 if (bi_size + size > BOOTINFO_SIZE)
73 bi_size += size;
/src/sys/arch/arc/stand/boot/
H A Dbootinfo.c41 static int bi_size; /* current bootinfo size */ variable in typeref:typename:int
53 bi_size = 0;
64 if (bi_size + size > BOOTINFO_SIZE)
67 bi_size += size;
/src/sys/arch/emips/stand/common/
H A Dbootinfo.c40 static int bi_size; variable in typeref:typename:int
51 bi_size = 0;
61 if (bi_size + size > BOOTINFO_SIZE)
/src/sys/arch/sparc/stand/boot/
H A Dbootinfo.c41 static int bi_size; variable in typeref:typename:int
61 bi_size = 0;
73 if (bi_size + size > BOOTINFO_SIZE)
/src/sys/arch/sparc/stand/ofwboot/
H A Dbootinfo.c42 static int bi_size; variable in typeref:typename:int
68 bi_size = 0;
80 if (bi_size + size > BOOTINFO_SIZE)
/src/sys/ufs/lfs/
H A Dlfs_syscalls.c188 blkiov[i].bi_size = blkiov15[i].bi_size;
199 blkiov15[i].bi_size = blkiov[i].bi_size;
419 if (obsize != blkp->bi_size) {
423 (long) obsize, blkp->bi_size));
439 blkp->bi_size, blkp->bi_bp);
444 if (blkp->bi_size != lfs_sb_getbsize(fs) &&
447 " size=%d\n", blkp->bi_size);
448 bp = getblk(vp, blkp->bi_lbn, blkp->bi_size,
[all...]
H A Dlfs.h1186 int bi_size; /* size of the block (if fragment) */ member in struct:block_info
1198 int bi_size; /* size of the block (if fragment) */ member in struct:block_info_70
1209 int bi_size; /* size of the block (if fragment) */ member in struct:block_info_15
H A Dlfs_vnops.c1832 bi->bi_size = bi70->bi_size;
1844 bi70->bi_size = bi->bi_size;
/src/libexec/lfs_cleanerd/
H A Dcoalesce.c260 printf("bi_size = %d, bi_ino = %ju, "
262 bip[i].bi_size, (uintmax_t)bip[i].bi_inode,
326 bip[i].bi_bp = malloc(bip[i].bi_size);
329 bip[i].bi_size, strerror(errno));
334 if (kops.ko_pread(fs->clfs_devfd, bip[i].bi_bp, bip[i].bi_size,
H A Dlfs_cleanerd.c430 for (j = 0; j < bip->bi_size; j++) {
434 assert(j < bip->bi_size);
555 bip[*bic - 1].bi_size = DINOSIZE(fs);
638 bip[*bic + i].bi_size = (i == lfs_fi_getnblocks(fs, fip) - 1) ?
643 daddr += lfs_btofsb(fs, bip[*bic + i].bi_size);
827 if (a->bi_size <= 0 && b->bi_size > 0)
829 if (b->bi_size <= 0 && a->bi_size > 0)
912 *sizep += bip[i].bi_size;
[all...]
/src/sys/arch/virt68k/include/
H A Dbootinfo.h47 uint16_t bi_size; /* record size (including header) */ member in struct:bi_record
/src/sys/arch/mvmeppc/stand/libsa/
H A Dbugsyscalls.h97 u_int16_t bi_size; /* Size of this structure */ member in struct:bug_boardid
/src/sys/arch/ews4800mips/ews4800mips/
H A Dmachdep.c89 if (bi == NULL || bi->bi_size != sizeof(struct bootinfo)) {
168 bi->bi_version, bi->bi_size, bi->bi_nsym, bi->bi_ssym, bi->bi_esym);
/src/sys/arch/evbarm/stand/boot2440/
H A Dmain.c64 int bi_size; variable in typeref:typename:int
512 bi_size = 0;
524 if (bi_size + size > BOOTINFO_MAXSIZE)
/src/sys/arch/ews4800mips/stand/common/
H A Dloader.c204 bi.bi_size = sizeof bi;
/src/sys/arch/sandpoint/stand/altboot/
H A Dmain.c69 int bi_size; /* BOOTINFO_MAXSIZE */ variable in typeref:typename:int
411 bi_size = 0;
422 if (bi_size + size > BOOTINFO_MAXSIZE)
/src/sys/arch/sparc/sparc/
H A Dautoconf.c1956 int bi_size; local in function:bootinfo_relocate
1968 * we account for that up-front by initializing `bi_size'
1971 bi_size = sizeof(struct btinfo_common);
1975 bi_size += bt->next;
1983 if ((int)bootinfo - (int)newloc < bi_size)
2006 kernel_top = (char *)newloc + ALIGN(bi_size);
/src/sys/arch/virt68k/virt68k/
H A Dbootinfo.c87 addr += bi->bi_size;

Completed in 29 milliseconds