| /src/sys/arch/atari/stand/tostools/libtos/ | 
| sysinfo.c | 58 sys_info(osdsc_t *od) 63 	od->cputype = 0;
 71 		od->cputype |= ATARI_CLKBROKEN;
 76 	if (od->stmem_size <= 0)
 77 		od->stmem_size  = *ADDR_PHYSTOP;
 79 	if (od->ttmem_size)
 80 		od->ttmem_start  = TTRAM_BASE;
 83 			od->ttmem_size  = *ADDR_RAMTOP;
 84 			if (od->ttmem_size > TTRAM_BASE) {
 85 				od->ttmem_size  -= TTRAM_BASE
 [all...]
 | 
| aout.c | 80 aout_load(int fd, osdsc_t *od, char **errp, int loadsyms) 104 	od->k_esym = 0;
 105 	od->ksize  = textsz + ehdr.a_data + ehdr.a_bss;
 106 	od->kentry = ehdr.a_entry;
 119 		od->ksize += ehdr.a_syms + sizeof(long) + stringsz;
 123 	if ((od->kstart = (u_char *)MALLOC(od->ksize)) == NULL)
 130 	if ((read(fd, (char *)(od->kstart), ehdr.a_text) != ehdr.a_text)
 131 	    ||(read(fd,(char *)(od->kstart+textsz),ehdr.a_data) != ehdr.a_data))
 133 	memset(od->kstart + textsz + ehdr.a_data, 0, ehdr.a_bss)
 [all...]
 | 
| elf.c | 68 elf_load(int fd, osdsc_t *od, char **errp, int loadsyms) 137 	od->k_esym = symsize ? kernsize : 0;
 138 	od->ksize  = kernsize;
 139 	od->kentry = ehdr.e_entry;
 142 	if ((od->kstart = (u_char *)MALLOC(od->ksize)) == NULL)
 156 		p = (u_char *)(od->kstart) + php->p_vaddr;
 173 	    symtab = od->kstart + symstart;
 
 | 
| /src/sys/arch/atari/stand/tostools/loadbsd/ | 
| loadbsd.c | 76 	osdsc_t		*od;  local in function:main 81 	od = &kernelparms;
 82 	od->boothowto = RB_SINGLE;
 87 			od->boothowto &= ~(RB_SINGLE);
 88 			od->boothowto |= RB_AUTOBOOT;
 91 			od->boothowto |= RB_ASKNAME;
 94 			od->boothowto |= RB_KDB;
 112 			od->stmem_size = atoi(optarg);
 118 			od->ttmem_size = atoi(optarg);
 143 	get_sys_info(od);
 [all...]
 | 
| /src/sys/arch/atari/stand/bootxx/ | 
| bootxx.c | 62 	osdsc_t		*od = &os_desc;  local in function:bootxx 75 		od->rootfs = 0;			/* partition a */
 76 		od->osname = "/netbsd";
 77 		od->ostype = &od->osname[1];
 78 		od->boothowto = (RB_RDONLY);
 83 			od->boothowto = (RB_RDONLY|RB_SINGLE);
 84 			pref = usr_info(od);
 92 		if (init_dskio(readsector, disklabel, od->rootfs))
 95 		if (load_booter(od))
 [all...]
 | 
| /src/sys/arch/atari/stand/bootxxx/ | 
| bootxxx.c | 50 bootxxx(void *readsector, void *disklabel, osdsc_t *od) 63 	if (init_dskio(readsector, disklabel, od->rootfs))
 66 	sys_info(od);
 67 	if (!(od->cputype & ATARI_ANYCPU)) {
 72 	if ((fd = open(od->osname, 0)) < 0) {
 73 		printf("Cannot open kernel '%s'\n", od->osname);
 77 	if (elf_load(fd, od, &errmsg, 1) != 0)
 80 	boot_BSD(&od->kp);
 
 | 
| /src/sys/arch/evbmips/alchemy/ | 
| obio.c | 80 	const struct obiodev *od;  local in function:obio_attach 87 	for (od = board->ab_devices; od->od_name != NULL; od++) {
 88 		oa.oba_name = od->od_name;
 89 		oa.oba_addr = od->od_addr;
 90 		oa.oba_irq = od->od_irq;
 
 | 
| /src/usr.bin/hexdump/ | 
| Makefile | 6 MAN=	hexdump.1 od.1 12 LINKS=	${BINDIR}/hexdump ${BINDIR}/od
 
 | 
| /src/sys/arch/mips/adm5120/ | 
| adm5120_obio.c | 131 obio_attach_args_create(struct obio_attach_args *oa, const struct obiodev *od, 134 	oa->oba_name = od->od_name;
 135 	oa->oba_addr = od->od_addr;
 136 	oa->oba_irq = od->od_irq;
 140 	oa->oba_gpio_mask = od->od_gpio_mask;
 148 	const struct obiodev *od;  local in function:obio_attach
 156 	for (od = obiodevs; od->od_name != NULL; od++) {
 158 		obio_attach_args_create(&oa, od, ma->ma_gpio, ma->ma_dmat
 [all...]
 | 
| /src/tests/lib/libppath/ | 
| t_ppath.c | 432 	prop_dictionary_t d, od;  local in function:ATF_TC_BODY 442 	od = prop_dictionary_copy(d);
 444 	if (!dictionary_equals(od, d)) {
 445 		oext = prop_dictionary_externalize(od);
 510 	if (!dictionary_equals(od, d)) {
 511 		oext = prop_dictionary_externalize(od);
 519 	if (dictionary_equals(od, nd)) {
 520 		oext = prop_dictionary_externalize(od);
 528 	rc = ppath_set_bool(od, p, false);
 531 	rc = ppath_set_string(od, p2, "Martha Doe")
 571  prop_dictionary_t d, od;  local in function:ATF_TC_BODY
 702  prop_dictionary_t d, od;  local in function:ATF_TC_BODY
 796  prop_dictionary_t d, od;  local in function:ATF_TC_BODY
 [all...]
 | 
| /src/tests/sbin/ifconfig/ | 
| t_random_garbage.sh | 31 	echo $(od -An -N2 -i /dev/urandom | sed 's/ //') 
 | 
| /src/sys/arch/ews4800mips/ews4800mips/ | 
| disksubr.c | 103 setdisklabel(struct disklabel *od, struct disklabel *nd, u_long openmask, 112 	*od = *nd;
 
 | 
| /src/sys/arch/hp300/stand/common/ | 
| machdep.c | 190 transfer(char *entry, int howto, int od, int csc, char *lr, char *es) 200 	_transfer(entry, howto, od, csc, lr, es);
 
 | 
| /src/tests/sbin/sysctl/ | 
| t_random_garbage.sh | 33 	echo $(od -An -N2 -i /dev/urandom | sed 's/ //') 
 | 
| /src/sys/dev/acpi/ | 
| acpi_display.c | 605 	struct acpidisp_outdev *od;  local in function:acpidisp_vga_childdetached 618 	for (i = 0, od = oi->oi_dev; i < oi->oi_dev_count; i++, od++) {
 619 		if (od->od_device == child)
 620 			od->od_device = NULL;
 996 	struct acpidisp_outdev *od;  local in function:acpidisp_vga_cycle_output_device_callback
 1015 	for (i = 0, od = oi->oi_dev; i < oi->oi_dev_count; i++, od++) {
 1016 		if (od->od_device == NULL)
 1018 		osc = device_private(od->od_device)
 1579  struct acpidisp_outdev *od;  local in function:acpidisp_vga_bind_outdevs
 1982  struct acpidisp_outdev *od;  local in function:acpidisp_print_odinfo
 [all...]
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/rockchip/ | 
| rk3399-gru-bob.dts | 85 		h1_int_od_l: h1-int-od-l { 
 | 
| /src/sys/arch/m68k/m68k/ | 
| db_disasm.c | 2329 	int disp, odisp, bd, od, reg;  local in function:get_modregstr_moto 2435 			od = BITFIELD(ext,1,0);
 2447 			if (od == 1)
 2449 			else if (od == 2) {
 2452 			} else if (od == 3) {
 2459 			 * We set od and bd to zero, these values are
 2463 			 * `bd' and `od'.
 2465 			od = 0;
 2473 		if (od)
 2495 		if (od && ISBITSET(ext,2)
 2534  int disp, odisp, bd, od, reg;  local in function:get_modregstr_mit
 [all...]
 | 
| /src/tests/usr.bin/compress/ | 
| t_pr_19722.sh | 56 	    od -Ax -tx1 file.Z 
 | 
| /src/distrib/acorn32/ | 
| mksparkive.sh | 176 				    2>/dev/null |  od -t d1 | awk '{print $2}') 
 | 
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ | 
| stm32h7-pinctrl.dtsi | 86 	sdmmc1_b4_od_pins_a: sdmmc1-b4-od-0 { 154 	sdmmc2_b4_od_pins_a: sdmmc2-b4-od-0 {
 
 | 
| stm32f7-pinctrl.dtsi | 239 			sdio_pins_od_a: sdio-pins-od-a-0 { 270 			sdio_pins_od_b: sdio-pins-od-b-0 {
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ | 
| tsan_fd.cc | 230   FdDesc *od = fddesc(thr, pc, oldfd);  local in function:__tsan::FdDup 231   MemoryRead(thr, pc, (uptr)od, kSizeLog8);
 233   init(thr, pc, newfd, ref(od->sync), write);
 
 | 
| /src/distrib/evbsh3/rom/ramdiskcommon/ | 
| ramdiskbin.conf | 58 ln hexdump od 
 | 
| /src/tests/usr.bin/printf/ | 
| printf.sh | 273 	atf_require_prog od 282 		elif [ $(( $( do_printf "${fmt}" | od -A n -to1 ) )) -ne 0 ]
 284 			RES="$( do_printf "${fmt}" | od -A n -to1 | tr -d ' ')"
 1303 		elif [ $(( $( do_printf %b "${fmt}" | od -A n -to1 ) )) -ne 0 ]
 1305 			atf_require_prog od
 1308 			RES="$(do_printf %b "${fmt}" | od -An -to1 | tr -d ' ')"
 1601 	atf_require_prog od
 1610 		elif [ $(( $( do_printf "${fmt}" | od -A n -to1 ) )) -ne 0 ]
 1613 			RES="$( do_printf "${fmt}" | od -A n -to1 | tr -d ' ')"
 1628 				od -A n -to1
 [all...]
 | 
| /src/sbin/efi/ | 
| showvar.c | 309 format_optional_data(char *od, size_t sz) 317 		char c = od[i];
 
 |