Searched refs:od (Results 1 - 25 of 194) sorted by relevance

12345678

/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-mmix/
H A Dlocdo.s2 od OCTA od label
H A Dlocto.s2 od OCTA od label
/netbsd-current/external/bsd/ntp/dist/sntp/libopts/
H A Dboolean.c42 * arg: + tOptDesc * + od + the descriptor for this arg +
50 optionBooleanVal(tOptions * opts, tOptDesc * od) argument
55 if (INQUERY_CALL(opts, od))
58 if (od->optArg.argString == NULL) {
59 od->optArg.argBool = false;
63 switch (*(od->optArg.argString)) {
66 long val = strtol(od->optArg.argString, &pz, 0);
79 if (od->optArg.argString[1] != 'f')
84 if (od->fOptState & OPTST_ALLOC_ARG) {
85 AGFREE(od
[all...]
H A Dtime.c37 * arg: + tOptDesc * + od + the descriptor for this arg +
43 optionTimeVal(tOptions * opts, tOptDesc * od) argument
47 if (INQUERY_CALL(opts, od))
50 val = parse_duration(od->optArg.argString);
52 fprintf(stderr, zNotDuration, opts->pzProgName, od->optArg.argString);
57 if (od->fOptState & OPTST_ALLOC_ARG) {
58 AGFREE(od->optArg.argString);
59 od->fOptState &= ~OPTST_ALLOC_ARG;
62 od->optArg.argInt = (long)val;
70 * arg: + tOptDesc * + od
76 optionTimeDate(tOptions * opts, tOptDesc * od) argument
[all...]
H A Dnumeric.c103 * arg: + tOptDesc * + od + the descriptor for this arg +
109 optionNumericVal(tOptions * opts, tOptDesc * od) argument
118 if (INQUERY_CALL(opts, od) || (od->optArg.argString == NULL))
124 * emitted by passing a NULL od pointer. Also bail out
127 if ( (od == NULL)
128 || (od->optArg.argString == NULL)
129 || ((od->fOptState & OPTST_RESET) != 0))
133 val = strtol(od->optArg.argString, &pz, 0);
134 if ((pz == od
[all...]
H A Dstack.c44 * arg: + tOptDesc * + od + the descriptor for this arg +
50 optionUnstackArg(tOptions * opts, tOptDesc * od) argument
54 if (INQUERY_CALL(opts, od))
57 arg_list = (tArgList *)od->optCookie;
64 od->fOptState &= OPTST_PERSISTENT_MASK;
65 if ((od->fOptState & OPTST_INITENABLED) == 0)
66 od->fOptState |= OPTST_DISABLED;
75 if (regcomp(&re, od->optArg.argString, REG_NOSUB) != 0)
139 if (strcmp(pzSrc, od->optArg.argString) == 0) {
167 od
236 optionStackArg(tOptions * opts, tOptDesc * od) argument
[all...]
H A Dautoopts.c116 tOptDesc * od = o_st->pOD; local
117 tOptProc * opt_proc = od->pOptProc;
118 if (od->fOptState & OPTST_ALLOC_ARG)
119 AGFREE(od->optArg.argString);
121 od->optArg.argString = o_st->pzOptArg;
128 && ((od->fOptState & OPTST_NO_INIT) != 0)
136 * entry. (It may not be od->optChar[0], if this is an
140 if (od->optEquivIndex != NO_EQUIVALENT) {
141 tOptDesc * eqv_od = opts->pOptDesc + od->optEquivIndex;
148 if ((od
372 tOptDesc * od = opts->pOptDesc + opts->specOptIdx.save_opts; local
[all...]
H A Dusage.c62 prt_conflicts(tOptions * opts, tOptDesc * od);
65 prt_one_vendor(tOptions * opts, tOptDesc * od,
72 prt_extd_usage(tOptions * opts, tOptDesc * od, char const * title);
79 prt_preamble(tOptions * opts, tOptDesc * od, arg_types_t * at);
82 prt_one_usage(tOptions * opts, tOptDesc * od, arg_types_t * at);
291 tOptDesc * od = opts->pOptDesc + ix; local
292 while (od->optUsage != AOUSE_HELP) {
295 od++;
300 help[1] = od->optValue;
307 strncpy(help + 2, od
642 prt_conflicts(tOptions * opts, tOptDesc * od) argument
702 prt_one_vendor(tOptions * opts, tOptDesc * od, arg_types_t * argtp, char const * usefmt) argument
774 tOptDesc * od = opts->pOptDesc; local
819 prt_extd_usage(tOptions * opts, tOptDesc * od, char const * title) argument
999 prt_preamble(tOptions * opts, tOptDesc * od, arg_types_t * at) argument
1032 prt_one_usage(tOptions * opts, tOptDesc * od, arg_types_t * at) argument
1095 tOptDesc * od = opts->pOptDesc; local
1207 tOptDesc * od = opts->pOptDesc; local
[all...]
H A Dalias.c37 too_many_occurrences(tOptions * opts, tOptDesc * od) argument
40 char const * eqv = (od->optEquivIndex != NO_EQUIVALENT) ? zequiv : zNil;
44 if (od->optMaxCt > 1)
45 fprintf(stderr, zat_most, od->optMaxCt, od->pz_Name, eqv);
47 fprintf(stderr, zonly_one, od->pz_Name, eqv);
H A Dcheck.c37 has_conflict(tOptions * pOpts, tOptDesc * od) argument
39 if (od->pOptMust != NULL) {
40 int const * must = od->pOptMust;
47 od->pz_Name, ood->pz_Name);
53 if (od->pOptCant != NULL) {
54 int const * cant = od->pOptCant;
61 od->pz_Name, ood->pz_Name);
H A Dmakeshell.c45 text_to_var(tOptions * opts, teTextTo which, tOptDesc * od);
57 emit_action(tOptions * opts, tOptDesc * od);
60 emit_inaction(tOptions * opts, tOptDesc * od);
287 * @param[in] od for TT_VERSION, it is the version option
290 text_to_var(tOptions * opts, teTextTo which, tOptDesc * od) argument
334 if (od->fOptState & OPTST_ALLOC_ARG) {
335 AGFREE(od->optArg.argString);
336 od->fOptState &= ~OPTST_ALLOC_ARG;
338 od->optArg.argString = "c";
339 optionPrintVersion(opts, od);
439 tOptDesc * od = opts->pOptDesc; local
473 tOptDesc * od = opts->pOptDesc; local
536 emit_action(tOptions * opts, tOptDesc * od) argument
586 emit_inaction(tOptions * opts, tOptDesc * od) argument
611 tOptDesc * od = opts->pOptDesc; local
646 tOptDesc * od = opts->pOptDesc; local
717 tOptDesc * od = opts->pOptDesc; local
[all...]
H A Denum.c52 set_memb_names(tOptions * opts, tOptDesc * od, char const * const * nm_list,
56 check_membership_start(tOptDesc * od, char const ** argp, bool * invert);
59 find_member_bit(tOptions * opts, tOptDesc * od, char const * pz, int len,
258 tOptDesc od = { .optIndex = 0 }; local
259 od.optArg.argEnum = enum_val;
261 (*(pOD->pOptProc))(OPTPROC_RETURN_VALNAME, &od );
262 return od.optArg.argString;
370 set_memb_names(tOptions * opts, tOptDesc * od, char const * const * nm_list, argument
375 uintptr_t bits = (uintptr_t)od->optCookie & mask;
390 od
432 check_membership_start(tOptDesc * od, char const ** argp, bool * invert) argument
491 find_member_bit(tOptions * opts, tOptDesc * od, char const * pz, int len, char const * const * nm_list, unsigned int nm_ct) argument
521 optionMemberList(tOptDesc * od) argument
548 optionSetMembers(tOptions * opts, tOptDesc * od, char const * const * nm_list, unsigned int nm_ct) argument
[all...]
H A Dversion.c140 print_ver(tOptions * opts, tOptDesc * od, FILE * fp, bool call_exit) argument
152 if ( (od->fOptState & OPTST_ARG_OPTIONAL)
153 && (od->optArg.argString != NULL)
154 && (od->optArg.argString[0] != NUL))
156 ch = od->optArg.argString[0];
187 * arg: + tOptDesc * + od + the descriptor for this arg +
193 optionPrintVersion(tOptions * opts, tOptDesc * od) argument
195 print_ver(opts, od, print_exit ? stderr : stdout, true);
202 * arg: + tOptDesc * + od + the descriptor for this arg +
211 optionPrintVersionAndReturn(tOptions * opts, tOptDesc * od) argument
227 optionVersionStderr(tOptions * opts, tOptDesc * od) argument
[all...]
H A Dsave.c44 prt_entry(FILE * fp, tOptDesc * od, char const * l_arg);
68 prt_enum_arg(FILE * fp, tOptDesc * od);
71 prt_set_arg(FILE * fp, tOptDesc * od);
74 prt_file_arg(FILE * fp, tOptDesc * od, tOptions * opts);
276 * @param[in] od the option descriptor to print
280 prt_entry(FILE * fp, tOptDesc * od, char const * l_arg) argument
292 (! DISABLED_OPT(od) || (od->optEquivIndex != NO_EQUIVALENT))
293 ? od->pz_Name
294 : od
625 prt_enum_arg(FILE * fp, tOptDesc * od) argument
649 prt_set_arg(FILE * fp, tOptDesc * od) argument
670 prt_file_arg(FILE * fp, tOptDesc * od, tOptions * opts) argument
722 tOptDesc * od; local
[all...]
/netbsd-current/sys/arch/atari/stand/tostools/libtos/
H A Dsysinfo.c50 sys_info(osdsc_t *od) argument
55 od->cputype = 0;
63 od->cputype |= ATARI_CLKBROKEN;
68 if (od->stmem_size <= 0)
69 od->stmem_size = *ADDR_PHYSTOP;
71 if (od->ttmem_size)
72 od->ttmem_start = TTRAM_BASE;
75 od->ttmem_size = *ADDR_RAMTOP;
76 if (od->ttmem_size > TTRAM_BASE) {
77 od
[all...]
H A Daout.c80 aout_load(int fd, osdsc_t *od, char **errp, int loadsyms) argument
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
[all...]
/netbsd-current/sys/arch/atari/stand/tostools/loadbsd/
H A Dloadbsd.c76 osdsc_t *od; local
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);
192 get_sys_info(osdsc_t *od) argument
245 start_kernel(osdsc_t *od) argument
[all...]
/netbsd-current/sys/arch/atari/stand/bootxx/
H A Dbootxx.c62 osdsc_t *od = &os_desc; local
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))
105 usr_info(osdsc_t *od) argument
176 load_booter(osdsc_t *od) argument
[all...]
/netbsd-current/sys/arch/atari/stand/bootxxx/
H A Dbootxxx.c50 bootxxx(void *readsector, void *disklabel, osdsc_t *od) argument
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);
/netbsd-current/sys/arch/evbmips/alchemy/
H A Dobio.c80 const struct obiodev *od; local
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;
/netbsd-current/usr.bin/hexdump/
H A DMakefile6 MAN= hexdump.1 od.1
12 LINKS= ${BINDIR}/hexdump ${BINDIR}/od
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dsftp-glob.c66 fudge_readdir(struct SFTP_OPENDIR *od) argument
70 if (od->dir[od->offset] == NULL)
74 strlcpy(ret.d_name, od->dir[od->offset++]->filename,
81 fudge_closedir(struct SFTP_OPENDIR *od) argument
83 sftp_free_dirents(od->dir);
84 free(od);
/netbsd-current/sys/arch/mips/adm5120/
H A Dadm5120_obio.c131 obio_attach_args_create(struct obio_attach_args *oa, const struct obiodev *od, argument
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
156 for (od = obiodevs; od->od_name != NULL; od++) {
158 obio_attach_args_create(&oa, od, m
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gold/
H A Doutput.h1144 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 in union:gold::Output_reloc::__anon1773
1378 Output_reloc(Symbol* gsym, unsigned int type, Output_data* od, argument
1381 : rel_(gsym, type, od, address, is_relative, is_symbolless,
1398 Output_data* od, Address address,
1402 : rel_(relobj, local_sym_index, type, od, addres
1396 Output_reloc(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, Address address, Addend addend, bool is_relative, bool is_symbolless, bool is_section_symbol, bool use_plt_offset) argument
1420 Output_reloc(Output_section* os, unsigned int type, Output_data* od, Address address, Addend addend, bool is_relative) argument
1434 Output_reloc(unsigned int type, Output_data* od, Address address, Addend addend, bool is_relative) argument
1449 Output_reloc(unsigned int type, void* arg, Output_data* od, Address address, Addend addend) argument
1665 add(Output_data* od, const Output_reloc_type& reloc) argument
1719 add_global(Symbol* gsym, unsigned int type, Output_data* od, Address address) argument
1726 add_global(Symbol* gsym, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
1735 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od, uint64_t address, uint64_t addend) argument
1745 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od, Relobj* relobj, unsigned int shndx, uint64_t address, uint64_t addend) argument
1761 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od, Address address) argument
1769 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
1781 add_symbolless_global_addend(Symbol* gsym, unsigned int type, Output_data* od, Address address) argument
1789 add_symbolless_global_addend(Symbol* gsym, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
1801 add_local(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, Address address) argument
1810 add_local(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, Address address) argument
1819 add_local_generic(Relobj* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, uint64_t address, uint64_t addend) argument
1832 add_local_generic(Relobj* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, uint64_t address, uint64_t addend) argument
1847 add_local_relative(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, Address address) argument
1856 add_local_relative(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, Address address) argument
1865 add_local_relative(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, Address address, bool use_plt_offset) argument
1879 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, Address address) argument
1888 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, Address address) argument
1902 add_local_section(Sized_relobj<size, big_endian>* relobj, unsigned int input_shndx, unsigned int type, Output_data* od, Address address) argument
1911 add_local_section(Sized_relobj<size, big_endian>* relobj, unsigned int input_shndx, unsigned int type, Output_data* od, unsigned int shndx, Address address) argument
1924 add_output_section(Output_section* os, unsigned int type, Output_data* od, Address address) argument
1929 add_output_section(Output_section* os, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
1935 add_output_section_generic(Output_section* os, unsigned int type, Output_data* od, uint64_t address, uint64_t addend) argument
1946 add_output_section_generic(Output_section* os, unsigned int type, Output_data* od, Relobj* relobj, unsigned int shndx, uint64_t address, uint64_t addend) argument
1962 add_output_section_relative(Output_section* os, unsigned int type, Output_data* od, Address address) argument
1967 add_output_section_relative(Output_section* os, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
1976 add_absolute(unsigned int type, Output_data* od, Address address) argument
1980 add_absolute(unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
1988 add_relative(unsigned int type, Output_data* od, Address address) argument
1992 add_relative(unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
2001 add_target_specific(unsigned int type, void* arg, Output_data* od, Address address) argument
2006 add_target_specific(unsigned int type, void* arg, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address) argument
2034 add_global(Symbol* gsym, unsigned int type, Output_data* od, Address address, Addend addend) argument
2042 add_global(Symbol* gsym, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend) argument
2052 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od, uint64_t address, uint64_t addend) argument
2062 add_global_generic(Symbol* gsym, unsigned int type, Output_data* od, Relobj* relobj, unsigned int shndx, uint64_t address, uint64_t addend) argument
2080 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od, Address address, Addend addend, bool use_plt_offset) argument
2088 add_global_relative(Symbol* gsym, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend, bool use_plt_offset) argument
2101 add_symbolless_global_addend(Symbol* gsym, unsigned int type, Output_data* od, Address address, Addend addend) argument
2109 add_symbolless_global_addend(Symbol* gsym, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend) argument
2122 add_local(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, Address address, Addend addend) argument
2131 add_local(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, Address address, Addend addend) argument
2142 add_local_generic(Relobj* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, uint64_t address, uint64_t addend) argument
2155 add_local_generic(Relobj* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, uint64_t address, uint64_t addend) argument
2170 add_local_relative(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, Address address, Addend addend, bool use_plt_offset) argument
2181 add_local_relative(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, Address address, Addend addend, bool use_plt_offset) argument
2195 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, Address address, Addend addend) argument
2204 add_symbolless_local_addend(Sized_relobj<size, big_endian>* relobj, unsigned int local_sym_index, unsigned int type, Output_data* od, unsigned int shndx, Address address, Addend addend) argument
2219 add_local_section(Sized_relobj<size, big_endian>* relobj, unsigned int input_shndx, unsigned int type, Output_data* od, Address address, Addend addend) argument
2228 add_local_section(Sized_relobj<size, big_endian>* relobj, unsigned int input_shndx, unsigned int type, Output_data* od, unsigned int shndx, Address address, Addend addend) argument
2241 add_output_section(Output_section* os, unsigned int type, Output_data* od, Address address, Addend addend) argument
2246 add_output_section(Output_section* os, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend) argument
2255 add_output_section_generic(Output_section* os, unsigned int type, Output_data* od, uint64_t address, uint64_t addend) argument
2266 add_output_section_generic(Output_section* os, unsigned int type, Output_data* od, Relobj* relobj, unsigned int shndx, uint64_t address, uint64_t addend) argument
2282 add_output_section_relative(Output_section* os, unsigned int type, Output_data* od, Address address, Addend addend) argument
2287 add_output_section_relative(Output_section* os, unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend) argument
2300 add_absolute(unsigned int type, Output_data* od, Address address, Addend addend) argument
2305 add_absolute(unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend) argument
2316 add_relative(unsigned int type, Output_data* od, Address address, Addend addend) argument
2321 add_relative(unsigned int type, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend) argument
2333 add_target_specific(unsigned int type, void* arg, Output_data* od, Address address, Addend addend) argument
2338 add_target_specific(unsigned int type, void* arg, Output_data* od, Sized_relobj<size, big_endian>* relobj, unsigned int shndx, Address address, Addend addend) argument
2744 add_section_address(elfcpp::DT tag, const Output_data* od) argument
2750 add_section_plus_offset(elfcpp::DT tag, const Output_data* od, unsigned int offset) argument
2756 add_section_size(elfcpp::DT tag, const Output_data* od) argument
2761 add_section_size(elfcpp::DT tag, const Output_data* od, const Output_data* od2) argument
2817 Dynamic_entry(elfcpp::DT tag, const Output_data* od, bool section_size) argument
2828 Dynamic_entry(elfcpp::DT tag, const Output_data* od, const Output_data* od2) argument
2837 Dynamic_entry(elfcpp::DT tag, const Output_data* od, unsigned int offset) argument
2891 const Output_data* od; member in union:gold::Output_data_dynamic::Dynamic_entry::__anon1776
3331 set_link_section(const Output_data* od) argument
[all...]
/netbsd-current/external/gpl3/binutils/dist/opcodes/
H A Dlm32-opc.h96 #define CGEN_INIT_PARSE(od) \
99 #define CGEN_INIT_INSERT(od) \
102 #define CGEN_INIT_EXTRACT(od) \
105 #define CGEN_INIT_PRINT(od) \

Completed in 253 milliseconds

12345678