/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/ |
D | LTOBackend.cpp | 127 createTargetMachine(Config &Conf, const Target *TheTarget, Module &M) { in createTargetMachine() argument 131 for (const std::string &A : Conf.MAttrs) in createTargetMachine() 135 if (Conf.RelocModel) in createTargetMachine() 136 RelocModel = *Conf.RelocModel; in createTargetMachine() 142 TheTriple, Conf.CPU, Features.getString(), Conf.Options, RelocModel, in createTargetMachine() 143 Conf.CodeModel, Conf.CGOptLevel)); in createTargetMachine() 146 static void runNewPMPasses(Config &Conf, Module &Mod, TargetMachine *TM, in runNewPMPasses() argument 151 if (!Conf.SampleProfile.empty()) in runNewPMPasses() 152 PGOOpt = PGOOptions("", "", Conf.SampleProfile, false, true); in runNewPMPasses() 161 LoopAnalysisManager LAM(Conf.DebugPassManager); in runNewPMPasses() [all …]
|
D | LTO.cpp | 69 SmallString<40> &Key, const Config &Conf, const ModuleSummaryIndex &Index, in computeCacheKey() argument 114 AddString(Conf.CPU); in computeCacheKey() 119 AddUnsigned(Conf.Options.RelaxELFRelocations); in computeCacheKey() 120 AddUnsigned(Conf.Options.FunctionSections); in computeCacheKey() 121 AddUnsigned(Conf.Options.DataSections); in computeCacheKey() 122 AddUnsigned((unsigned)Conf.Options.DebuggerTuning); in computeCacheKey() 123 for (auto &A : Conf.MAttrs) in computeCacheKey() 125 if (Conf.RelocModel) in computeCacheKey() 126 AddUnsigned(*Conf.RelocModel); in computeCacheKey() 129 if (Conf.CodeModel) in computeCacheKey() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto2/ |
D | llvm-lto2.cpp | 190 Config Conf; in run() local 191 Conf.DiagHandler = [](const DiagnosticInfo &DI) { in run() 199 Conf.CPU = MCPU; in run() 200 Conf.Options = InitTargetOptionsFromCodeGenFlags(); in run() 201 Conf.MAttrs = MAttrs; in run() 203 Conf.RelocModel = *RM; in run() 204 Conf.CodeModel = getCodeModel(); in run() 206 Conf.DebugPassManager = DebugPassManager; in run() 209 check(Conf.addSaveTemps(OutputFilename + "."), in run() 213 Conf.RemarksFilename = OptRemarksOutput; in run() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/gold/ |
D | gold-plugin.cpp | 829 Config Conf; in createLTO() local 832 Conf.CPU = options::mcpu; in createLTO() 833 Conf.Options = InitTargetOptionsFromCodeGenFlags(); in createLTO() 837 Conf.Options.RelaxELFRelocations = false; in createLTO() 840 Conf.Options.FunctionSections = SplitSections; in createLTO() 841 Conf.Options.DataSections = SplitSections; in createLTO() 843 Conf.MAttrs = MAttrs; in createLTO() 844 Conf.RelocModel = RelocationModel; in createLTO() 845 Conf.CodeModel = getCodeModel(); in createLTO() 846 Conf.CGOptLevel = getCGOptLevel(); in createLTO() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 112 void printCOFFLoadConfig(const T *Conf, LoadConfigTables &Tables); 813 void COFFDumper::printCOFFLoadConfig(const T *Conf, LoadConfigTables &Tables) { in printCOFFLoadConfig() argument 814 if (!Conf) in printCOFFLoadConfig() 819 time_t TDS = Conf->TimeDateStamp; in printCOFFLoadConfig() 821 W.printHex("Size", Conf->Size); in printCOFFLoadConfig() 825 if (Conf->Size < offsetof(T, SEHandlerTable)) in printCOFFLoadConfig() 828 W.printHex("MajorVersion", Conf->MajorVersion); in printCOFFLoadConfig() 829 W.printHex("MinorVersion", Conf->MinorVersion); in printCOFFLoadConfig() 830 W.printHex("GlobalFlagsClear", Conf->GlobalFlagsClear); in printCOFFLoadConfig() 831 W.printHex("GlobalFlagsSet", Conf->GlobalFlagsSet); in printCOFFLoadConfig() [all …]
|
/external/tensorflow/tensorflow/contrib/kafka/kernels/ |
D | kafka_dataset_ops.cc | 252 std::unique_ptr<RdKafka::Conf> conf( in SetupStreamsLocked() 253 RdKafka::Conf::create(RdKafka::Conf::CONF_GLOBAL)); in SetupStreamsLocked() 254 std::unique_ptr<RdKafka::Conf> topic_conf( in SetupStreamsLocked() 255 RdKafka::Conf::create(RdKafka::Conf::CONF_TOPIC)); in SetupStreamsLocked() 259 RdKafka::Conf::ConfResult result = in SetupStreamsLocked() 261 if (result != RdKafka::Conf::CONF_OK) { in SetupStreamsLocked() 266 if (result != RdKafka::Conf::CONF_OK) { in SetupStreamsLocked() 271 if (result != RdKafka::Conf::CONF_OK) { in SetupStreamsLocked()
|
/external/parameter-framework/upstream/test/functional-tests/ |
D | AutoSync.cpp | 79 <Configuration Name="Conf"> in createConfig() 89 <Configuration Name="Conf"> in createConfig()
|
/external/scapy/scapy/ |
D | config.py | 348 class Conf(ConfClass): class 461 if not Conf.ipv6_enabled: 464 if m in Conf.load_layers: 465 Conf.load_layers.remove(m) 467 if not Conf.crypto_valid: 471 conf=Conf()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/LTO/ |
D | LTO.h | 248 LTO(Config Conf, ThinBackend Backend = nullptr, 273 Config Conf; 276 RegularLTOState(unsigned ParallelCodeGenParallelismLevel, Config &Conf);
|
/external/u-boot/scripts/kconfig/tests/ |
D | conftest.py | 21 class Conf: class 291 return Conf(request)
|
/external/tcpdump/tests/ |
D | ppp_ccp_config_deflate_option_asan.out | 1 : CCP, Conf-Request (0x01), id 223, length 125685
|
/external/llvm/lib/ObjectYAML/ |
D | LLVMBuild.txt | 1 ;===------------------------------------------------------------*- Conf -*--===;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | LLVMBuild.txt | 1 ;===------------------------------------------------------------*- Conf -*--===;
|
/external/llvm/examples/ |
D | LLVMBuild.txt | 1 ;===- ./examples/LLVMBuild.txt ---------------------------------*- Conf -*--===;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Testing/ |
D | LLVMBuild.txt | 1 ;===- ./lib/Testing/LLVMBuild.txt ------------------------------*- Conf -*--===;
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ |
D | LLVMBuild.txt | 1 ;===- ./examples/LLVMBuild.txt ---------------------------------*- Conf -*--===;
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | LLVMBuild.txt | 1 ;===- ./docs/LLVMBuild.txt -------------------------------------*- Conf -*--===;
|
/external/llvm/projects/ |
D | LLVMBuild.txt | 1 ;===- ./projects/LLVMBuild.txt ---------------------------------*- Conf -*--===;
|
/external/llvm/bindings/ |
D | LLVMBuild.txt | 1 ;===- ./bindings/LLVMBuild.txt ---------------------------------*- Conf -*--===;
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ |
D | LLVMBuild.txt | 1 ;===- ./bindings/LLVMBuild.txt ---------------------------------*- Conf -*--===;
|
/external/swiftshader/third_party/llvm-7.0/llvm/projects/ |
D | LLVMBuild.txt | 1 ;===- ./projects/LLVMBuild.txt ---------------------------------*- Conf -*--===;
|
/external/llvm/docs/ |
D | LLVMBuild.txt | 1 ;===- ./docs/LLVMBuild.txt -------------------------------------*- Conf -*--===;
|
/external/llvm/utils/TableGen/ |
D | LLVMBuild.txt | 1 ;===- ./utils/TableGen/LLVMBuild.txt ---------------------------*- Conf -*--===;
|
/external/llvm/lib/LineEditor/ |
D | LLVMBuild.txt | 1 ;===- ./lib/LineEditor/LLVMBuild.txt ---------------------------*- Conf -*--===;
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | LLVMBuild.txt | 1 ;===- ./lib/DebugInfo/CodeView/LLVMBuild.txt -------------------*- Conf -*--===;
|