boot               50 arch/i386/stand/boot/crt0.c 	uexit(boot(0));
boot               74 arch/i386/stand/installboot/installboot.c char	*boot, *proto, *dev, *realdev;
boot              141 arch/i386/stand/installboot/installboot.c 	boot = argv[optind];
boot              151 arch/i386/stand/installboot/installboot.c 		fprintf(stderr, "boot: %s\n", boot);
boot              186 arch/i386/stand/installboot/installboot.c 	if (getbootparams(boot, devfd, &dl) != 0)
boot              256 arch/i386/stand/installboot/installboot.c 		    boot,
boot              269 arch/i386/stand/installboot/installboot.c 		    boot, eh.e_phnum);
boot              279 arch/i386/stand/installboot/installboot.c 		errx(1, "%s: can't read header", boot);
boot              352 arch/i386/stand/installboot/installboot.c 	if ((fd = open(boot, O_RDONLY)) < 0)
boot              353 arch/i386/stand/installboot/installboot.c 		err(1, "open: %s", boot);
boot              356 arch/i386/stand/installboot/installboot.c 		err(1, "statfs: %s", boot);
boot              360 arch/i386/stand/installboot/installboot.c 		errx(1, "%s: not on an FFS filesystem", boot);
boot              364 arch/i386/stand/installboot/installboot.c 		errx(1, "read: %s", boot);
boot              368 arch/i386/stand/installboot/installboot.c 		    boot,
boot              375 arch/i386/stand/installboot/installboot.c 		err(1, "fsync: %s", boot);
boot              378 arch/i386/stand/installboot/installboot.c 		err(1, "fstat: %s", boot);
boot              440 arch/i386/stand/installboot/installboot.c 		    boot, ndb, fs->fs_bsize);
boot             1089 compat/ibcs2/ibcs2_misc.c 			boot(RB_HALT);
boot             1092 compat/ibcs2/ibcs2_misc.c 			boot(RB_AUTOBOOT);
boot             1091 compat/sunos/sunos_misc.c 	boot(bsd_howto);
boot              620 ddb/db_command.c 	boot(RB_AUTOBOOT | RB_TIMEBAD | RB_USERREQ);
boot              626 ddb/db_command.c 	boot(RB_NOSYNC | RB_DUMP | RB_TIMEBAD | RB_USERREQ);
boot              632 ddb/db_command.c 	boot(RB_DUMP | RB_TIMEBAD | RB_USERREQ);
boot              638 ddb/db_command.c 	boot(RB_NOSYNC | RB_HALT | RB_TIMEBAD | RB_USERREQ);
boot              644 ddb/db_command.c 	boot(RB_AUTOBOOT | RB_NOSYNC | RB_TIMEBAD | RB_USERREQ);
boot              650 ddb/db_command.c 	boot(RB_NOSYNC | RB_HALT | RB_POWERDOWN | RB_TIMEBAD | RB_USERREQ);
boot              429 dev/pci/if_myx.c 		goto boot;
boot              457 dev/pci/if_myx.c  boot:
boot              923 dev/pci/if_txp.c 	struct txp_boot_record *boot;
boot              934 dev/pci/if_txp.c 	boot = (struct txp_boot_record *)sc->sc_boot_dma.dma_vaddr;
boot              935 dev/pci/if_txp.c 	bzero(boot, sizeof(*boot));
boot              936 dev/pci/if_txp.c 	sc->sc_boot = boot;
boot              945 dev/pci/if_txp.c 	boot->br_hostvar_lo = htole32(sc->sc_host_dma.dma_paddr & 0xffffffff);
boot              946 dev/pci/if_txp.c 	boot->br_hostvar_hi = htole32(sc->sc_host_dma.dma_paddr >> 32);
boot              956 dev/pci/if_txp.c 	boot->br_txhipri_lo = htole32(sc->sc_txhiring_dma.dma_paddr & 0xffffffff);
boot              957 dev/pci/if_txp.c 	boot->br_txhipri_hi = htole32(sc->sc_txhiring_dma.dma_paddr >> 32);
boot              958 dev/pci/if_txp.c 	boot->br_txhipri_siz = htole32(TX_ENTRIES * sizeof(struct txp_tx_desc));
boot              983 dev/pci/if_txp.c 	boot->br_txlopri_lo = htole32(sc->sc_txloring_dma.dma_paddr & 0xffffffff);
boot              984 dev/pci/if_txp.c 	boot->br_txlopri_hi = htole32(sc->sc_txloring_dma.dma_paddr >> 32);
boot              985 dev/pci/if_txp.c 	boot->br_txlopri_siz = htole32(TX_ENTRIES * sizeof(struct txp_tx_desc));
boot              998 dev/pci/if_txp.c 	boot->br_rxhipri_lo = htole32(sc->sc_rxhiring_dma.dma_paddr & 0xffffffff);
boot              999 dev/pci/if_txp.c 	boot->br_rxhipri_hi = htole32(sc->sc_rxhiring_dma.dma_paddr >> 32);
boot             1000 dev/pci/if_txp.c 	boot->br_rxhipri_siz = htole32(RX_ENTRIES * sizeof(struct txp_rx_desc));
boot             1015 dev/pci/if_txp.c 	boot->br_rxlopri_lo = htole32(sc->sc_rxloring_dma.dma_paddr & 0xffffffff);
boot             1016 dev/pci/if_txp.c 	boot->br_rxlopri_hi = htole32(sc->sc_rxloring_dma.dma_paddr >> 32);
boot             1017 dev/pci/if_txp.c 	boot->br_rxlopri_siz = htole32(RX_ENTRIES * sizeof(struct txp_rx_desc));
boot             1032 dev/pci/if_txp.c 	boot->br_cmd_lo = htole32(sc->sc_cmdring_dma.dma_paddr & 0xffffffff);
boot             1033 dev/pci/if_txp.c 	boot->br_cmd_hi = htole32(sc->sc_cmdring_dma.dma_paddr >> 32);
boot             1034 dev/pci/if_txp.c 	boot->br_cmd_siz = htole32(CMD_ENTRIES * sizeof(struct txp_cmd_desc));
boot             1046 dev/pci/if_txp.c 	boot->br_resp_lo = htole32(sc->sc_rspring_dma.dma_paddr & 0xffffffff);
boot             1047 dev/pci/if_txp.c 	boot->br_resp_hi = htole32(sc->sc_rspring_dma.dma_paddr >> 32);
boot             1048 dev/pci/if_txp.c 	boot->br_resp_siz = htole32(CMD_ENTRIES * sizeof(struct txp_rsp_desc));
boot             1060 dev/pci/if_txp.c 	boot->br_rxbuf_lo = htole32(sc->sc_rxbufring_dma.dma_paddr & 0xffffffff);
boot             1061 dev/pci/if_txp.c 	boot->br_rxbuf_hi = htole32(sc->sc_rxbufring_dma.dma_paddr >> 32);
boot             1062 dev/pci/if_txp.c 	boot->br_rxbuf_siz = htole32(RXBUF_ENTRIES * sizeof(struct txp_rxbuf_desc));
boot             1117 dev/pci/if_txp.c 	boot->br_zero_lo = htole32(sc->sc_zero_dma.dma_paddr & 0xffffffff);
boot             1118 dev/pci/if_txp.c 	boot->br_zero_hi = htole32(sc->sc_zero_dma.dma_paddr >> 32);
boot               56 kern/kern_xxx.c 	boot(SCARG(uap, opt));
boot             1086 kern/subr_disk.c 				boot(exitflags);
boot             1123 kern/subr_disk.c 				boot(exitflags);
boot              221 kern/subr_prf.c 	boot(bootopt);
boot              118 stand/boot/boot.c 	boot(0);
boot               61 stand/boot/cmd.h void boot(dev_t);
boot               97 sys/reboot.h   void	boot(int)