| /freebsd-9-stable/contrib/binutils/bfd/ |
| D | libaout.h | 471 extern bfd_boolean NAME (aout, squirt_out_relocs) 474 extern bfd_boolean NAME (aout, make_sections) 477 extern const bfd_target * NAME (aout, some_aout_object_p) 480 extern bfd_boolean NAME (aout, mkobject) 483 extern enum machine_type NAME (aout, machine_type) 486 extern bfd_boolean NAME (aout, set_arch_mach) 489 extern bfd_boolean NAME (aout, new_section_hook) 492 extern bfd_boolean NAME (aout, set_section_contents) 495 extern asymbol * NAME (aout, make_empty_symbol) 498 extern bfd_boolean NAME (aout, translate_symbol_table) [all …]
|
| D | aout-target.h | 31 extern reloc_howto_type * NAME (aout, reloc_type_lookup) (bfd *, bfd_reloc_code_real_type); 32 extern reloc_howto_type * NAME (aout, reloc_name_lookup) (bfd *, const char *); 161 NAME (aout, swap_exec_header_in) (abfd, &exec_bytes, &exec); in MY() 168 target = NAME (aout, some_aout_object_p) (abfd, &exec, MY (callback)); in MY() 199 return NAME (aout, mkobject (abfd)); in MY() 351 return NAME (aout, final_link) (abfd, info, MY_final_link_callback); in MY_bfd_final_link() 416 #define MY_core_file_failing_command NAME (aout, core_file_failing_command) 419 #define MY_core_file_failing_signal NAME (aout, core_file_failing_signal) 422 #define MY_core_file_matches_executable_p NAME (aout, core_file_matches_executable_p) 425 #define MY_set_section_contents NAME (aout, set_section_contents) [all …]
|
| D | Makefile.am | 196 aout-adobe.lo \ 197 aout-arm.lo \ 198 aout-cris.lo \ 199 aout-ns32k.lo \ 200 aout-sparcle.lo \ 201 aout-tic30.lo \ 375 aout-adobe.c \ 376 aout-arm.c \ 377 aout-cris.c \ 378 aout-ns32k.c \ [all …]
|
| D | Makefile.in | 445 aout-adobe.lo \ 446 aout-arm.lo \ 447 aout-cris.lo \ 448 aout-ns32k.lo \ 449 aout-sparcle.lo \ 450 aout-tic30.lo \ 624 aout-adobe.c \ 625 aout-arm.c \ 626 aout-cris.c \ 627 aout-ns32k.c \ [all …]
|
| D | PORTING | 43 In this case, the include file aout-target.h probaby does most 44 of what you need. The program gen-aout generates <target>.c for 46 make gen-aout 47 ./gen-aout <target> > <target>.c 50 similar existing file that includes aout-target.h, and fix what is wrong.) 53 (Also let us know about it; perhaps we can improve gen-aout.c.) 59 See discussion in ../include/aout/aout64.h.
|
| D | aoutx.h | 154 #define MY_swap_std_reloc_in NAME (aout, swap_std_reloc_in) 158 #define MY_swap_ext_reloc_in NAME (aout, swap_ext_reloc_in) 162 #define MY_swap_std_reloc_out NAME (aout, swap_std_reloc_out) 166 #define MY_swap_ext_reloc_out NAME (aout, swap_ext_reloc_out) 177 #define howto_table_ext NAME (aout, ext_howto_table) 178 #define howto_table_std NAME (aout, std_howto_table) 264 NAME (aout, reloc_type_lookup) (bfd *abfd, bfd_reloc_code_real_type code) in NAME() argument 321 NAME (aout, reloc_name_lookup) (bfd *abfd, const char *r_name) in NAME() argument 373 NAME (aout, swap_exec_header_in) (bfd *abfd, in NAME() argument 392 #define NAME_swap_exec_header_in NAME (aout, swap_exec_header_in) [all …]
|
| D | config.bfd | 251 arm-*-aout | armel-*-aout) 255 armeb-*-aout) 347 c30-*-*aout* | tic30-*-*aout*) 578 i[3-7]86-*-linux*aout*) 665 i[3-7]86-*-aout* | i[3-7]86*-*-vsta*) 698 i960-*-vxworks* | i960-*-aout* | i960-*-bout* | i960-*-nindy*) 752 m68*-*-aout*) 776 m68*-*-linux*aout*) 1325 sparclet-*-aout*) 1330 sparc86x-*-aout*) [all …]
|
| D | ChangeLog-9495 | 93 (NAME(aout,final_link)): Initialize includes hash table. 156 * aout-arm.c (MY_swap_std_reloc_out): Use KEEPIT to get the symbol 318 * host-aout.c: If TRAD_HEADER is defined, include it. 472 * aout-target.h (MY(callback)): Set the lma of the sections. 517 * aoutx.h (NAME(aout,final_link)): Report a reasonable error when 524 * aoutx.h (NAME(aout,set_section_contents)): If a section can not 767 * aout-adobe.c, aout-target.h, binary.c, bout.c, coff-alpha.c, 928 * PORTING, aout-arm.c, aout-encap.c, aout-target.h, 929 aoutx.h, gen-aout.c, host-aout.c, hp300bsd.c, i386aout.c 1370 * aout-target.h (MY_read_ar_hdr): Define if not defined. [all …]
|
| /freebsd-9-stable/sys/boot/sparc64/boot1/ |
| D | Makefile | 8 CLEANFILES=${FILES} boot1.aout 19 ${FILES}: boot1.aout 20 @set -- `ls -l boot1.aout`; x=$$((7680-$$5)); \ 23 dd if=boot1.aout of=${.TARGET} bs=512 oseek=1 conv=notrunc 25 boot1.aout: boot1.elf
|
| /freebsd-9-stable/crypto/openssl/crypto/dh/ |
| D | dhtest.c | 106 int i, alen, blen, aout, bout, ret = 1; in main() local 178 aout = DH_compute_key(abuf, b->pub_key, a); in main() 181 for (i = 0; i < aout; i++) { in main() 197 if ((aout < 4) || (bout != aout) || (memcmp(abuf, bbuf, aout) != 0)) { in main()
|
| /freebsd-9-stable/crypto/openssl/crypto/ecdh/ |
| D | ecdhtest.c | 130 int i, alen, blen, aout, bout, ret = 0; in test_ecdh_curve() local 214 aout = in test_ecdh_curve() 219 for (i = 0; i < aout; i++) { in test_ecdh_curve() 246 if ((aout < 4) || (bout != aout) || (memcmp(abuf, bbuf, aout) != 0)) { in test_ecdh_curve() 273 for (i = 0; i < aout; i++) { in test_ecdh_curve()
|
| /freebsd-9-stable/crypto/openssl/crypto/perlasm/ |
| D | x86unix.pl | 10 $under=($main'aout or $main'coff)?"_":""; 11 $dot=($main'aout)?"":"."; 363 elsif ($main'aout and !$main'pic) 395 elsif ($main'aout and !$main'pic) 452 elsif ($main'coff or $main'aout) 575 if ($main'aout) { 672 elsif ($main'pic && ($main'elf || $main'aout))
|
| D | x86asm.pl | 21 $elf=$cpp=$coff=$aout=$win32=$netware=$mwerks=0; 25 { $aout=1; require "x86unix.pl"; }
|
| /freebsd-9-stable/contrib/binutils/ld/ |
| D | configure.tgt | 49 arm-*-aout | armel-*-aout) targ_emul=armaoutl ;; 50 armeb-*-aout) targ_emul=armaoutb ;; 127 cris-*-*aout*) targ_emul=crisaout 185 i[3-7]86-*-aout) targ_emul=i386aout ;; 186 i[3-7]86-*-linux*aout*) targ_emul=i386linux 188 tdir_elf_i386=`echo ${targ_alias} | sed -e 's/aout//'` ;; 194 tdir_i386linux=${targ_alias}aout ;; 198 tdir_i386linux=`echo ${targ_alias}aout | sed -e 's/x86_64/i386/'` 313 m68*-*-aout) targ_emul=m68kaout ;; 317 m68k-*-linux*aout*) targ_emul=m68klinux [all …]
|
| /freebsd-9-stable/usr.bin/ldd/ |
| D | ldd.c | 277 struct exec aout; in is_executable() member 293 if ((size_t)n >= sizeof(hdr.aout) && !N_BADMAG(hdr.aout)) { in is_executable() 295 if ((N_GETFLAG(hdr.aout) & EX_DPMASK) != EX_DYNAMIC in is_executable() 297 || hdr.aout.a_entry < __LDPGSZ in is_executable()
|
| /freebsd-9-stable/contrib/binutils/gas/ |
| D | Makefile.in | 352 aout \ 366 aout) \ 401 aout) \ 594 config/obj-aout.c \ 602 config/obj-aout.h \ 797 DEPTC_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \ 836 DEPTC_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \ 912 DEPTC_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \ 991 DEPTC_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \ 1099 DEPTC_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \ [all …]
|
| D | Makefile.am | 107 aout \ 121 aout) \ 157 aout) \ 351 config/obj-aout.c \ 359 config/obj-aout.h \ 558 $(INCDIR)/aout/stab_gnu.h 563 obj-aout.o : $(srcdir)/config/obj-aout.c $(DEP_@target_cpu_type@_aout) 564 $(COMPILE) -c $(srcdir)/config/obj-aout.c 933 echo ' $$(BFDDIR)/som.h $$(INCDIR)/aout/stab_gnu.h \' >> DEPOBJA 934 echo ' $$(INCDIR)/aout/stab.def' >> DEPOBJA
|
| /freebsd-9-stable/contrib/binutils/bfd/po/ |
| D | SRC-POTFILES.in | 6 aout-adobe.c 7 aout-arm.c 8 aout-cris.c 10 aout-ns32k.c 11 aout-sparcle.c 12 aout-target.h 13 aout-tic30.c
|
| /freebsd-9-stable/etc/rc.d/ |
| D | ldconfig | 70 for i in /usr/lib/aout ${ldconfig_paths_aout} /etc/ld.so.conf; do 76 ${ldconfig} -aout ${_ins} ${_LDC}
|
| /freebsd-9-stable/contrib/file/magic/Magdir/ |
| D | aout | 3 # $File: aout,v 1.1 2013/01/09 22:37:23 christos Exp $ 4 # aout: file(1) magic for a.out executable/object/etc entries that
|
| /freebsd-9-stable/contrib/binutils/ld/emulparams/ |
| D | sparcnbsd.sh | 1 SCRIPT_NAME=aout
|
| D | i386aout.sh | 1 SCRIPT_NAME=aout
|
| D | i386bsd.sh | 1 SCRIPT_NAME=aout
|
| D | i386nbsd.sh | 1 SCRIPT_NAME=aout
|
| D | armnbsd.sh | 1 SCRIPT_NAME=aout
|