| /mirbsd/src/gnu/usr.bin/binutils/include/aout/ |
| D | hp.h | 28 struct exec struct 49 /* Tell a.out.gnu.h not to define `struct exec'. */ argument 62 #define N_MAGIC(exec) ((exec) . a_magic) argument 63 #define N_MACHTYPE(exec) ((exec) . a_machtype) argument 64 #define N_SET_MAGIC(exec, magic) (((exec) . a_magic) = (magic)) argument 65 #define N_SET_MACHTYPE(exec, machtype) (((exec) . a_machtype) = (machtype)) argument
|
| /mirbsd/src/gnu/usr.bin/binutils/gas/config/ |
| D | obj-hp300.h | 46 struct exec struct 48 unsigned long a_info; 49 unsigned long a_spare1; 50 unsigned long a_spare2; 51 unsigned long a_text; 52 unsigned long a_data; 53 unsigned long a_bss; 54 unsigned long a_trsize; 55 unsigned long a_drsize; 56 unsigned long a_spare3; [all …]
|
| D | obj-bout.h | 84 struct exec struct 87 unsigned long a_magic; /* Identifies this as a b.out file. */ 88 unsigned long a_text; /* Length of text. */ 89 unsigned long a_data; /* Length of data. */ 90 unsigned long a_bss; /* Length of runtime uninitialized data area. */ 91 unsigned long a_syms; /* Length of symbol table. */ 92 unsigned long a_entry; /* Runtime start address. */ 93 unsigned long a_trsize; /* Length of text relocation info. */ 94 unsigned long a_drsize; /* Length of data relocation info. */ 97 unsigned long a_tload; /* Text runtime load address. */ [all …]
|
| D | aout_gnu.h | 92 struct exec struct 94 unsigned long a_info; /* Use macros N_MAGIC, etc for access */ 95 unsigned a_text; /* length of text, in bytes */ 96 unsigned a_data; /* length of data, in bytes */ 97 unsigned a_bss; /* length of uninitialized data area for file, in bytes */ 98 unsigned a_syms; /* length of symbol table data in file, in bytes */ 99 unsigned a_entry; /* start address */ 100 unsigned a_trsize; /* length of relocation info for text, in bytes */ 101 unsigned a_drsize; /* length of relocation info for data, in bytes */ 129 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | freebsd.h | 28 #define N_GETMAGIC_NET(exec) \ argument 30 #define N_GETMID_NET(exec) \ argument 35 #define N_MACHTYPE(exec) \ argument 39 #define N_FLAGS(exec) \ argument 43 #define N_SET_INFO(exec, magic, type, flags) \ argument 47 #define N_SET_MACHTYPE(exec, machtype) \ argument 50 #define N_SET_FLAGS(exec, flags) \ argument
|
| D | netbsd.h | 37 #define N_MACHTYPE(exec) \ argument 39 #define N_FLAGS(exec) \ argument 42 #define N_SET_INFO(exec, magic, type, flags) \ argument 46 #define N_SET_MACHTYPE(exec, machtype) \ argument 49 #define N_SET_FLAGS(exec, flags) \ argument
|
| D | libaout.h | 295 #define N_DYNAMIC(exec) ((exec).a_info & 0x80000000) argument 298 # define N_MAGIC(exec) ((exec).a_info & 0xffff) argument 302 # define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument 306 # define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument 310 # define N_SET_INFO(exec, magic, type, flags) \ argument 317 # define N_SET_DYNAMIC(exec, dynamic) \ argument 323 # define N_SET_MAGIC(exec, magic) \ argument 328 # define N_SET_MACHTYPE(exec, machtype) \ argument 334 # define N_SET_FLAGS(exec, flags) \ argument
|
| D | i386msdos.c | 44 msdos_sizeof_headers (abfd, exec) in msdos_sizeof_headers() argument
|
| D | riscix.c | 609 struct internal_exec exec; /* Cleaned-up exec header. */ in MY() local
|
| D | aout-target.h | 135 struct internal_exec exec; /* Cleaned-up exec header. */ in MY() local
|
| D | ppcboot.c | 398 ppcboot_sizeof_headers (abfd, exec) in ppcboot_sizeof_headers() argument
|
| D | aout-tic30.c | 538 struct internal_exec exec; /* Cleaned-up exec header. */ in tic30_aout_object_p() local
|
| D | pdp11.c | 62 #define N_FLAGS(exec) 0 argument 64 #define N_SET_FLAGS(exec, flags) do { } while (0) argument
|
| /mirbsd/src/sys/sys/ |
| D | exec_aout.h | 47 struct exec { struct 48 u_int32_t a_midmag; /* htonl(flags<<26|mid<<16|magic) */ 49 u_int32_t a_text; /* text segment size */ 50 u_int32_t a_data; /* initialized data size */ 51 u_int32_t a_bss; /* uninitialized data size */ 52 u_int32_t a_syms; /* symbol table size */ 53 u_int32_t a_entry; /* entry point */ 54 u_int32_t a_trsize; /* text relocation size */ 55 u_int32_t a_drsize; /* data relocation size */
|
| /mirbsd/src/sys/lib/libsa/ |
| D | exec.c | 47 exec(char *path, void *loadaddr, int howto) in exec() function
|
| D | loadfile_elf.c | 71 ELFNAME(exec)(int fd, Elf_Ehdr *elf, u_long *marks, int flags) in ELFNAME() argument
|
| /mirbsd/src/sys/kern/ |
| D | exec_elf.c | 528 ELFNAME2(exec,makecmds)(struct proc *p, struct exec_package *epp) in ELFNAME2() argument 761 ELFNAME2(exec,fixup)(struct proc *p, struct exec_package *epp) in ELFNAME2() argument
|
| /mirbsd/src/gnu/usr.bin/binutils/include/opcode/ |
| D | or32.h | 70 void (*exec) (void); member
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | fbsd-nat.c | 104 int read, write, exec; in fbsd_find_memory_regions() local
|
| D | gcore.c | 311 int read, int write, int exec, void *data) in gcore_create_callback()
|
| D | linux-nat.c | 2484 int read, write, exec; in linux_nat_find_memory_regions() local
|
| D | target.c | 349 maybe_kill_then_create_inferior (char *exec, char *args, char **env, in maybe_kill_then_create_inferior()
|
| /mirbsd/src/lib/libc/gen/ |
| D | fnlist.c | 110 struct exec exec; in __aout_fnlist() local
|
| D | nlist.c | 75 struct exec exec; in __aout_fdnlist() local
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/doc/ |
| D | chew.c | 356 exec (word) in exec() function
|