/src/sys/arch/amd64/stand/prekern/ |
prng.c | 63 struct btinfo_common *bic; local in function:prng_lookup_bootinfo 67 bic = (struct btinfo_common *)(bootinfo.bi_data); 70 if (bic->type == type) 73 bic = (struct btinfo_common *) 74 ((uint8_t *)bic + bic->len); 76 return found ? bic : NULL;
|
/src/sys/arch/x86/x86/ |
multiboot2.c | 389 struct btinfo_console bic; local in function:mbi_cmdline 393 if (optstr_get(cmdline, "console", bic.devname, sizeof(bic.devname))) { 394 if (strncmp(bic.devname, "com", sizeof(bic.devname)) == 0) { 399 bic.speed = strtoul(opt, NULL, 10); 401 bic.speed = 0; /* Use default speed. */ 406 bic.addr = strtoul(opt + 2, NULL, 16); 408 bic.addr = strtoul(opt, NULL, 10); 410 bic.addr = 0; /* Use default address. * [all...] |
x86_machdep.c | 152 struct btinfo_common *bic; local in function:lookup_bootinfo 154 bic = (struct btinfo_common *)(bootinfo.bi_data); 157 if (bic->type == type) 160 bic = (struct btinfo_common *) 161 ((uint8_t *)bic + bic->len); 164 return found ? bic : NULL; 179 struct btinfo_common *bic; local in function:aprint_bootinfo 182 bic = (struct btinfo_common *)(bootinfo.bi_data); 184 if (bic->type >= 0 && bic->type < __arraycount(btinfo_str) [all...] |
/src/libexec/lfs_cleanerd/ |
lfs_cleanerd.c | 443 parse_pseg(struct clfs *fs, daddr_t daddr, BLOCK_INFO **bipp, int *bic) 460 obic = *bic; 539 ++*bic; 540 nbip = (BLOCK_INFO *)realloc(bip, *bic * 545 --*bic; 549 bip[*bic - 1].bi_inode = lfs_dino_getinumber(fs, dip); 550 bip[*bic - 1].bi_lbn = LFS_UNUSED_LBN; 551 bip[*bic - 1].bi_daddr = daddr; 552 bip[*bic - 1].bi_segcreate = lfs_ss_getcreate(fs, ssp); 553 bip[*bic - 1].bi_version = lfs_dino_getgen(fs, dip) 927 int i, r, bic; local in function:invalidate_segment 1077 int i, j, ngood, sn, bic, r, npos; local in function:clean_fs 1618 int bic = 0; local in function:lfs_cleaner_main [all...] |
/src/sys/arch/powerpc/ibm4xx/ |
pmap.c | 1034 int s, bic; local in function:pmap_protect 1040 bic = 0; 1042 bic |= TTE_WR; 1044 bic |= TTE_EX; 1045 if (bic == 0) 1052 *ptp &= ~bic;
|