| /netbsd-src/sys/arch/atari/stand/tostools/loadbsd/ |
| H A D | loadbsd.c | 76 osdsc_t *od; in main() local 81 od = &kernelparms; in main() 82 od->boothowto = RB_SINGLE; in main() 87 od->boothowto &= ~(RB_SINGLE); in main() 88 od->boothowto |= RB_AUTOBOOT; in main() 91 od->boothowto |= RB_ASKNAME; in main() 94 od->boothowto |= RB_KDB; in main() 112 od->stmem_size = atoi(optarg); in main() 118 od->ttmem_size = atoi(optarg); in main() 143 get_sys_info(od); in main() [all …]
|
| /netbsd-src/sys/arch/atari/stand/tostools/libtos/ |
| H A D | sysinfo.c | 58 sys_info(osdsc_t *od) in sys_info() 63 od->cputype = 0; in sys_info() 71 od->cputype |= ATARI_CLKBROKEN; in sys_info() 76 if (od->stmem_size <= 0) in sys_info() 77 od->stmem_size = *ADDR_PHYSTOP; in sys_info() 79 if (od->ttmem_size) in sys_info() 80 od->ttmem_start = TTRAM_BASE; in sys_info() 83 od->ttmem_size = *ADDR_RAMTOP; in sys_info() 84 if (od->ttmem_size > TTRAM_BASE) { in sys_info() 85 od in sys_info() 50 sys_info(osdsc_t * od) sys_info() argument [all...] |
| H A D | aout.c | 80 aout_load(int fd, osdsc_t *od, char **errp, int loadsyms) in aout_load() argument 104 od->k_esym = 0; in aout_load() 105 od->ksize = textsz + ehdr.a_data + ehdr.a_bss; in aout_load() 106 od->kentry = ehdr.a_entry; in aout_load() 119 od->ksize += ehdr.a_syms + sizeof(long) + stringsz; in aout_load() 123 if ((od->kstart = (u_char *)MALLOC(od->ksize)) == NULL) in aout_load() 130 if ((read(fd, (char *)(od->kstart), ehdr.a_text) != ehdr.a_text) in aout_load() 131 ||(read(fd,(char *)(od->kstart+textsz),ehdr.a_data) != ehdr.a_data)) in aout_load() 133 memset(od->kstart + textsz + ehdr.a_data, 0, ehdr.a_bss); in aout_load() 141 p = (long *)((od->kstart) + textsz + ehdr.a_data + ehdr.a_bss); in aout_load() [all …]
|
| H A D | elf.c | 68 elf_load(int fd, osdsc_t *od, char **errp, int loadsyms) in elf_load() argument 137 od->k_esym = symsize ? kernsize : 0; in elf_load() 138 od->ksize = kernsize; in elf_load() 139 od->kentry = ehdr.e_entry; in elf_load() 142 if ((od->kstart = (u_char *)MALLOC(od->ksize)) == NULL) in elf_load() 156 p = (u_char *)(od->kstart) + php->p_vaddr; in elf_load() 173 symtab = od->kstart + symstart; in elf_load()
|
| /netbsd-src/sys/arch/atari/stand/bootxx/ |
| H A D | bootxx.c | 62 osdsc_t *od = &os_desc; in bootxx() local 75 od->rootfs = 0; /* partition a */ in bootxx() 76 od->osname = "/netbsd"; in bootxx() 77 od->ostype = &od->osname[1]; in bootxx() 78 od->boothowto = (RB_RDONLY); in bootxx() 83 od->boothowto = (RB_RDONLY|RB_SINGLE); in bootxx() 84 pref = usr_info(od); in bootxx() 92 if (init_dskio(readsector, disklabel, od->rootfs)) in bootxx() 95 if (load_booter(od)) in bootxx() 98 (*bootxxx)(readsector, disklabel, od); in bootxx() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/gold/ |
| H A D | output.h | 1144 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od, 1157 Output_data* od, Address address, bool is_relative, 1169 Output_reloc(Output_section* os, unsigned int type, Output_data* od, 1178 Output_reloc(unsigned int type, Output_data* od, Address address, 1188 Output_reloc(unsigned int type, void* arg, Output_data* od, 1331 Output_data* od; member 1378 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od, in Output_reloc() argument 1381 : rel_(gsym, type, od, address, is_relative, is_symbolless, in Output_reloc() 1398 Output_data* od, Address address, in Output_reloc() argument 1402 : rel_(relobj, local_sym_index, type, od, address, is_relative, in Output_reloc() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/gold/ |
| H A D | output.h | 1144 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od, 1157 Output_data* od, Address address, bool is_relative, 1169 Output_reloc(Output_section* os, unsigned int type, Output_data* od, 1178 Output_reloc(unsigned int type, Output_data* od, Address address, 1188 Output_reloc(unsigned int type, void* arg, Output_data* od, 1331 Output_data* od; member 1378 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od, in Output_reloc() argument 1381 : rel_(gsym, type, od, address, is_relative, is_symbolless, in Output_reloc() 1398 Output_data* od, Address address, in Output_reloc() argument 1402 : rel_(relobj, local_sym_index, type, od, address, is_relative, in Output_reloc() [all …]
|
| /netbsd-src/sys/arch/atari/stand/bootxxx/ |
| H A D | bootxxx.c | 50 bootxxx(void *readsector, void *disklabel, osdsc_t *od) in bootxxx() argument 63 if (init_dskio(readsector, disklabel, od->rootfs)) in bootxxx() 66 sys_info(od); in bootxxx() 67 if (!(od->cputype & ATARI_ANYCPU)) { in bootxxx() 72 if ((fd = open(od->osname, 0)) < 0) { in bootxxx() 73 printf("Cannot open kernel '%s'\n", od->osname); in bootxxx() 77 if (elf_load(fd, od, &errmsg, 1) != 0) in bootxxx() 80 boot_BSD(&od->kp); in bootxxx()
|
| /netbsd-src/tests/lib/libppath/ |
| H A D | t_ppath.c | 432 prop_dictionary_t d, od; in ATF_TC_BODY() local 442 od = prop_dictionary_copy(d); in ATF_TC_BODY() 444 if (!dictionary_equals(od, d)) { in ATF_TC_BODY() 445 oext = prop_dictionary_externalize(od); in ATF_TC_BODY() 510 if (!dictionary_equals(od, d)) { in ATF_TC_BODY() 511 oext = prop_dictionary_externalize(od); in ATF_TC_BODY() 519 if (dictionary_equals(od, nd)) { in ATF_TC_BODY() 520 oext = prop_dictionary_externalize(od); in ATF_TC_BODY() 528 rc = ppath_set_bool(od, p, false); in ATF_TC_BODY() 531 rc = ppath_set_string(od, p2, "Martha Doe"); in ATF_TC_BODY() [all …]
|
| /netbsd-src/sys/arch/mips/adm5120/ |
| H A D | adm5120_obio.c | 131 obio_attach_args_create(struct obio_attach_args *oa, const struct obiodev *od, in obio_attach_args_create() argument 134 oa->oba_name = od->od_name; in obio_attach_args_create() 135 oa->oba_addr = od->od_addr; in obio_attach_args_create() 136 oa->oba_irq = od->od_irq; in obio_attach_args_create() 140 oa->oba_gpio_mask = od->od_gpio_mask; in obio_attach_args_create() 148 const struct obiodev *od; in obio_attach() local 156 for (od = obiodevs; od->od_name != NULL; od++) { in obio_attach() 158 obio_attach_args_create(&oa, od, ma->ma_gpio, ma->ma_dmat, in obio_attach()
|
| /netbsd-src/sys/arch/evbmips/alchemy/ |
| H A D | obio.c | 80 const struct obiodev *od; in obio_attach() local 87 for (od = board->ab_devices; od->od_name != NULL; od++) { in obio_attach() 88 oa.oba_name = od->od_name; in obio_attach() 89 oa.oba_addr = od->od_addr; in obio_attach() 90 oa.oba_irq = od->od_irq; in obio_attach()
|
| /netbsd-src/crypto/external/bsd/openssh/dist/ |
| H A D | sftp-glob.c | 66 fudge_readdir(struct SFTP_OPENDIR *od) in fudge_readdir() argument 70 if (od->dir[od->offset] == NULL) in fudge_readdir() 74 strlcpy(ret.d_name, od->dir[od->offset++]->filename, in fudge_readdir() 81 fudge_closedir(struct SFTP_OPENDIR *od) in fudge_closedir() argument 83 sftp_free_dirents(od->dir); in fudge_closedir() 84 free(od); in fudge_closedir()
|
| /netbsd-src/external/cddl/osnet/dist/cmd/ztest/ |
| H A D | ztest.c | 1944 ztest_lookup(ztest_ds_t *zd, ztest_od_t *od, int count) in ztest_lookup() argument 1951 for (int i = 0; i < count; i++, od++) { in ztest_lookup() 1952 od->od_object = 0; in ztest_lookup() 1953 error = zap_lookup(zd->zd_os, od->od_dir, od->od_name, in ztest_lookup() 1954 sizeof (uint64_t), 1, &od->od_object); in ztest_lookup() 1957 ASSERT(od->od_object == 0); in ztest_lookup() 1964 ASSERT(od->od_object != 0); in ztest_lookup() 1967 ztest_object_lock(zd, od->od_object, RL_READER); in ztest_lookup() 1969 od->od_object, FTAG, &db)); in ztest_lookup() 1973 od->od_type = doi.doi_type; in ztest_lookup() [all …]
|
| /netbsd-src/etc/etc.vax/ |
| H A D | disktab | 32 :pd#15884:od#49440:bd#4096:fd#512:\ 43 :pd#15884:od#341696:bd#4096:fd#512:\ 55 :pd#15884:od#49324:bd#4096:fd#512:\ 66 :pd#15884:od#49910:bd#4096:fd#512:\ 77 :pd#15884:od#49324:bd#4096:fd#512:\ 88 :pd#15884:od#376000:bd#4096:fd#512:\ 102 :pd#15884:od#376320:bd#4096:fd#512:\ 114 :pd#15884:od#49600:bd#4096:fd#512:\ 125 :pd#15884:od#342016:bd#4096:fd#512:\ 137 :pd#15884:od#375360:bd#4096:fd#512:\ [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.disasm/ |
| H A D | hppa.s | 254 movb,od %r4,%r26,movb_tests 263 movb,od,n %r4,%r26,movb_tests 273 movib,od 5,%r26,movib_tests 282 movib,od,n 5,%r26,movib_tests 296 comb,od %r0,%r4,comb_tests_1 316 comb,od,n %r0,%r4,comb_tests_1 336 comib,od 0,%r4,comib_tests_1 356 comib,od,n 0,%r4,comib_tests_1 376 addb,od %r1,%r4,addb_tests_1 396 addb,od,n %r1,%r4,addb_tests_1 [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/opcodes/ |
| H A D | lm32-opc.h | 96 #define CGEN_INIT_PARSE(od) \ argument 99 #define CGEN_INIT_INSERT(od) \ argument 102 #define CGEN_INIT_EXTRACT(od) \ argument 105 #define CGEN_INIT_PRINT(od) \ argument
|
| H A D | ip2k-opc.h | 109 #define CGEN_INIT_PARSE(od) \ argument 112 #define CGEN_INIT_INSERT(od) \ argument 115 #define CGEN_INIT_EXTRACT(od) \ argument 118 #define CGEN_INIT_PRINT(od) \ argument
|
| H A D | xstormy16-opc.h | 129 #define CGEN_INIT_PARSE(od) \ argument 132 #define CGEN_INIT_INSERT(od) \ argument 135 #define CGEN_INIT_EXTRACT(od) \ argument 138 #define CGEN_INIT_PRINT(od) \ argument
|
| H A D | mt-opc.h | 170 #define CGEN_INIT_PARSE(od) \ argument 173 #define CGEN_INIT_INSERT(od) \ argument 176 #define CGEN_INIT_EXTRACT(od) \ argument 179 #define CGEN_INIT_PRINT(od) \ argument
|
| /netbsd-src/external/gpl3/binutils.old/dist/opcodes/ |
| H A D | lm32-opc.h | 96 #define CGEN_INIT_PARSE(od) \ argument 99 #define CGEN_INIT_INSERT(od) \ argument 102 #define CGEN_INIT_EXTRACT(od) \ argument 105 #define CGEN_INIT_PRINT(od) \ argument
|
| H A D | ip2k-opc.h | 109 #define CGEN_INIT_PARSE(od) \ argument 112 #define CGEN_INIT_INSERT(od) \ argument 115 #define CGEN_INIT_EXTRACT(od) \ argument 118 #define CGEN_INIT_PRINT(od) \ argument
|
| H A D | xstormy16-opc.h | 129 #define CGEN_INIT_PARSE(od) \ argument 132 #define CGEN_INIT_INSERT(od) \ argument 135 #define CGEN_INIT_EXTRACT(od) \ argument 138 #define CGEN_INIT_PRINT(od) \ argument
|
| H A D | mt-opc.h | 170 #define CGEN_INIT_PARSE(od) \ argument 173 #define CGEN_INIT_INSERT(od) \ argument 176 #define CGEN_INIT_EXTRACT(od) \ argument 179 #define CGEN_INIT_PRINT(od) \ argument
|
| /netbsd-src/external/gpl3/binutils/dist/binutils/po/ |
| H A D | POTFILES.in | 42 od-elf32_avr.c 43 od-macho.c 44 od-pe.c 45 od-xcoff.c
|
| /netbsd-src/sys/dev/acpi/ |
| H A D | acpi_display.c | 605 struct acpidisp_outdev *od; in acpidisp_vga_childdetached() local 618 for (i = 0, od = oi->oi_dev; i < oi->oi_dev_count; i++, od++) { in acpidisp_vga_childdetached() 619 if (od->od_device == child) in acpidisp_vga_childdetached() 620 od->od_device = NULL; in acpidisp_vga_childdetached() 996 struct acpidisp_outdev *od; in acpidisp_vga_cycle_output_device_callback() local 1015 for (i = 0, od = oi->oi_dev; i < oi->oi_dev_count; i++, od++) { in acpidisp_vga_cycle_output_device_callback() 1016 if (od->od_device == NULL) in acpidisp_vga_cycle_output_device_callback() 1018 osc = device_private(od in acpidisp_vga_cycle_output_device_callback() 1579 struct acpidisp_outdev *od; global() local 1982 struct acpidisp_outdev *od; global() local [all...] |