/external/python/cpython3/Modules/ |
D | ld_so_aix.in | 110 shift; objfile=$1 114 objfile=`echo $1 | sed "s/-o//"` 135 if test "$objfile" = "libpython@VERSION@@ABIFLAGS@.so"; then 148 if test -z "$objfile"; then 149 objfile=shr.o 152 filename=`basename $objfile | sed "s/\.[^.]*$//"` 166 #echo " -> output file : $objfile" 178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile" 183 #echo $makexp $expfile "$objfile" $objs 184 $makexp $expfile "$objfile" $objs
|
/external/python/cpython2/Modules/ |
D | ld_so_aix.in | 110 shift; objfile=$1 114 objfile=`echo $1 | sed "s/-o//"` 135 if test "$objfile" = "libpython@VERSION@.so"; then 148 if test -z "$objfile"; then 149 objfile=shr.o 152 filename=`basename $objfile | sed "s/\.[^.]*$//"` 166 #echo " -> output file : $objfile" 178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile" 183 #echo $makexp $expfile "$objfile" $objs 184 $makexp $expfile "$objfile" $objs
|
/external/clang/utils/check_cfc/ |
D | obj_diff.py | 19 def disassemble(objfile): argument 21 p = subprocess.Popen([disassembler, '-d', objfile], 26 print("Disassemble failed: {}".format(objfile)) 30 def dump_debug(objfile): argument 32 …p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subp… 35 print("Dump debug failed: {}".format(objfile))
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayer.cpp | 95 auto ObjFile = object::ObjectFile::createObjectFile(*O); in emit() local 96 if (!ObjFile) { in emit() 97 getExecutionSession().reportError(ObjFile.takeError()); in emit() 119 auto Info = RTDyld->loadObject(**ObjFile); in emit() 123 for (auto &Sym : (*ObjFile)->symbols()) { in emit() 144 NotifyLoaded(K, **ObjFile, *Info); in emit()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/Inputs/ |
D | debug-subsections.yaml | 4 ObjFile: 'Foo.obj' 13 ObjFile: 'Bar.obj' 26 ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj' 68 ObjFile: 'ObjFileSubsections'
|
D | source-names-2.yaml | 5 ObjFile: 'C:\src\test.obj'
|
D | source-names-1.yaml | 5 ObjFile: 'C:\src\test.obj'
|
/external/pdfium/third_party/yasm/ |
D | run_yasm.py | 27 parser.add_argument("-o", dest="objfile") 30 objfile = options.objfile variable 31 depfile = objfile + '.d'
|
/external/syzkaller/pkg/report/ |
D | akaros.go | 20 objfile string member 26 objfile: filepath.Join(kernelObj, "akaros-kernel-64b"), 51 line = ctx.symbolizeLine(symb.Symbolize, ctx.objfile, line) 60 objfile string, line []byte) []byte { 69 frames, err := symbFunc(objfile, addr-1)
|
/external/llvm/lib/Object/ |
D | ModuleSummaryIndexObjectFile.cpp | 59 Expected<std::unique_ptr<ObjectFile>> ObjFile = in findBitcodeInMemBuffer() local 61 if (!ObjFile) in findBitcodeInMemBuffer() 62 return errorToErrorCode(ObjFile.takeError()); in findBitcodeInMemBuffer() 63 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
|
D | IRObjectFile.cpp | 299 Expected<std::unique_ptr<ObjectFile>> ObjFile = in findBitcodeInMemBuffer() local 301 if (!ObjFile) in findBitcodeInMemBuffer() 302 return errorToErrorCode(ObjFile.takeError()); in findBitcodeInMemBuffer() 303 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
|
/external/google-breakpad/src/common/mac/ |
D | macho_reader.cc | 104 struct fat_arch *objfile = &object_files_[i]; in Read() local 107 cursor >> objfile->cputype in Read() 108 >> objfile->cpusubtype in Read() 109 >> objfile->offset in Read() 110 >> objfile->size in Read() 111 >> objfile->align; in Read() 118 if (objfile->offset > fat_size || in Read() 119 objfile->size > fat_size - objfile->offset) { in Read()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/XRay/ |
D | InstrumentationMap.cpp | 50 loadELF64(StringRef Filename, object::OwningBinary<object::ObjectFile> &ObjFile, in loadELF64() argument 57 if (!ObjFile.getBinary()->isELF() || in loadELF64() 58 !(ObjFile.getBinary()->getArch() == Triple::x86_64 || in loadELF64() 59 ObjFile.getBinary()->getArch() == Triple::ppc64le)) in loadELF64() 65 const auto &Sections = ObjFile.getBinary()->sections(); in loadELF64()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/ |
D | pdbdump-debug-subsections.test | 6 YAML-NEXT: ObjFile: Foo.obj 15 YAML-NEXT: ObjFile: Bar.obj 28 YAML-NEXT: ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj'
|
D | pdbdump-objfilename.yaml | 8 # CHECK-NEXT: ObjFile:{{ *}}'C:\src\test.obj' 13 ObjFile: 'C:\src\test.obj'
|
D | pdb-yaml-symbols.test | 28 YAML: ObjFile: 'd:\src\llvm\test\DebugInfo\PDB\Inputs\empty.obj' 77 YAML: ObjFile: ''
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | IRObjectFile.cpp | 98 Expected<std::unique_ptr<ObjectFile>> ObjFile = in findBitcodeInMemBuffer() local 100 if (!ObjFile) in findBitcodeInMemBuffer() 101 return ObjFile.takeError(); in findBitcodeInMemBuffer() 102 return findBitcodeInObject(*ObjFile->get()); in findBitcodeInMemBuffer()
|
/external/swiftshader/third_party/LLVM/tools/lto/ |
D | LTOCodeGenerator.cpp | 194 tool_output_file objFile(uniqueObjPath.c_str(), errMsg); in compile_to_file() local 197 genResult = this->generateObjectFile(objFile.os(), errMsg); in compile_to_file() 198 objFile.os().close(); in compile_to_file() 199 if (objFile.os().has_error()) { in compile_to_file() 200 objFile.os().clear_error(); in compile_to_file() 203 objFile.keep(); in compile_to_file()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/ |
D | LTOCodeGenerator.cpp | 254 ToolOutputFile objFile(Filename, FD); in compileOptimizedToFile() local 256 bool genResult = compileOptimized(&objFile.os()); in compileOptimizedToFile() 257 objFile.os().close(); in compileOptimizedToFile() 258 if (objFile.os().has_error()) { in compileOptimizedToFile() 260 objFile.os().error().message()) in compileOptimizedToFile() 262 objFile.os().clear_error(); in compileOptimizedToFile() 267 objFile.keep(); in compileOptimizedToFile()
|
/external/llvm/utils/ |
D | GenLibDeps.pl | 113 my $objfile = $libpath.$2; 114 $objdefs{$1} = $objfile; 115 $objdeps{$objfile} = {}; 116 $libobjs{$lib}{$objfile}=1; 117 # my $p = "../llvm/".$objfile;
|
/external/swiftshader/third_party/LLVM/utils/ |
D | GenLibDeps.pl | 115 my $objfile = $libpath.$2; 116 $objdefs{$1} = $objfile; 117 $objdeps{$objfile} = {}; 118 $libobjs{$lib}{$objfile}=1; 119 # my $p = "../llvm/".$objfile;
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
D | GenLibDeps.pl | 113 my $objfile = $libpath.$2; 114 $objdefs{$1} = $objfile; 115 $objdeps{$objfile} = {}; 116 $libobjs{$lib}{$objfile}=1; 117 # my $p = "../llvm/".$objfile;
|
/external/llvm/lib/LTO/ |
D | LTOCodeGenerator.cpp | 253 tool_output_file objFile(Filename.c_str(), FD); in compileOptimizedToFile() local 255 bool genResult = compileOptimized(&objFile.os()); in compileOptimizedToFile() 256 objFile.os().close(); in compileOptimizedToFile() 257 if (objFile.os().has_error()) { in compileOptimizedToFile() 258 objFile.os().clear_error(); in compileOptimizedToFile() 263 objFile.keep(); in compileOptimizedToFile()
|
/external/curl/packages/vms/ |
D | build_vms.com | 957 $ objfile = f$parse("''objdir'.OBJ;", file) 958 $ obj = f$search(objfile, 2) 969 $ librarian /object 'p3' 'objfile' 971 $ 'vo_o' "%CURL-I-OBJUTD, ", objfile, " is up to date" 981 $ librarian /object 'p3' 'objfile'
|
/external/iproute2/bash-completion/ |
D | tc | 220 local fword objfile section_list 223 objfile=${words[fword+1]} 227 section_list=$( objdump -h $objfile 2>/dev/null | \
|