Searched defs:Features (Results 1 - 25 of 55) sorted by relevance

123

/external/jsoncpp/include/json/
H A Dfeatures.h19 class JSON_API Features { class in namespace:Json
27 static Features all();
35 static Features strictMode();
39 Features();
/external/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRELFStreamer.cpp10 static unsigned getEFlagsForFeatureSet(const FeatureBitset &Features) { argument
14 if (Features[AVR::ELFArchAVR1])
16 else if (Features[AVR::ELFArchAVR2])
18 else if (Features[AVR::ELFArchAVR25])
20 else if (Features[AVR::ELFArchAVR3])
22 else if (Features[AVR::ELFArchAVR31])
24 else if (Features[AVR::ELFArchAVR35])
26 else if (Features[AVR::ELFArchAVR4])
28 else if (Features[AVR::ELFArchAVR5])
30 else if (Features[AV
[all...]
/external/clang/include/clang/Basic/
H A DTargetOptions.h55 std::vector<std::string> Features; member in class:clang::TargetOptions
H A DBuiltins.h56 const char *Features; member in struct:clang::Builtin::Info
189 return getRecord(ID).Features;
/external/llvm/include/llvm/CodeGen/
H A DCommandFlags.h331 SubtargetFeatures Features; local
341 Features.AddFeature(F.first(), F.second);
345 Features.AddFeature(MAttrs[i]);
347 return Features.getString();
351 /// Features, and command line flags.
352 static inline void setFunctionAttributes(StringRef CPU, StringRef Features, argument
362 if (!Features.empty())
364 "target-features", Features);
/external/llvm/include/llvm/MC/
H A DSubtargetFeature.h88 /// specific features. Features are encoded as a string of the form
97 std::vector<std::string> Features; // Subtarget features as a vector member in class:llvm::SubtargetFeatures
101 /// Features string accessors.
104 /// Adding Features.
/external/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp82 SubtargetFeatures Features; local
84 Features.AddFeature(MAttrs[i]);
85 FeaturesStr = Features.getString();
/external/llvm/lib/Object/
H A DELFObjectFile.cpp61 SubtargetFeatures Features; local
69 Features.AddFeature("mips2");
72 Features.AddFeature("mips3");
75 Features.AddFeature("mips4");
78 Features.AddFeature("mips5");
81 Features.AddFeature("mips32");
84 Features.AddFeature("mips64");
87 Features.AddFeature("mips32r2");
90 Features.AddFeature("mips64r2");
93 Features
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DSubtargetFeature.h64 /// specific features. Features are encoded as a string of the form
75 std::vector<std::string> Features; // Subtarget features as a vector member in class:llvm::SubtargetFeatures
79 /// Features string accessors.
82 /// Adding Features.
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DTargetSelect.cpp81 SubtargetFeatures Features; local
83 Features.AddFeature(MAttrs[i]);
84 FeaturesStr = Features.getString();
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSubtargetInfo.cpp39 SubtargetFeatures Features(FS);
40 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, NumProcs,
48 SubtargetFeatures Features(FS);
49 FeatureBits = Features.getFeatureBits(CPU, ProcDesc, NumProcs,
64 SubtargetFeatures Features; local
65 FeatureBits = Features.ToggleFeature(FeatureBits, FS,
H A DSubtargetFeature.cpp117 Features.push_back(PrependFlag(LowercaseString(String), IsEnabled));
181 Split(Features, Initial);
186 return Join(Features);
307 for (size_t i = 0, E = Features.size(); i < E; i++) {
308 const StringRef Feature = Features[i];
368 for (size_t i = 0, e = Features.size(); i != e; ++i)
369 OS << Features[i] << " "; local
/external/llvm/tools/llvm-mc-fuzzer/
H A Dllvm-mc-fuzzer.cpp153 SubtargetFeatures Features; local
155 Features.AddFeature(MAttrs[i]);
156 FeaturesStr = Features.getString();
/external/swiftshader/third_party/LLVM/lib/Support/
H A DHost.cpp313 bool sys::getHostCPUFeatures(StringMap<bool> &Features){ argument
/external/swiftshader/third_party/LLVM/tools/llc/
H A Dllc.cpp300 SubtargetFeatures Features; local
302 Features.AddFeature(MAttrs[i]);
303 FeaturesStr = Features.getString();
/external/clang/lib/Basic/
H A DTargetInfo.cpp325 llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags, StringRef CPU,
331 setFeatureEnabled(Features, Name.substr(1), Enabled);
324 initFeatureMap( llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags, StringRef CPU, const std::vector<std::string> &FeatureVec) const argument
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.h48 const LangOptions &Features; member in class:clang::CodeGen::CodeGenTBAA
94 const LangOptions &Features,
H A DCodeGenTBAA.cpp34 const LangOptions &Features, MangleContext &MContext)
35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
48 if (Features.CPlusPlus)
138 createTBAAScalarType(BTy->getName(Features), getChar());
156 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible())
273 if (Features.CPlusPlus) {
32 CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext& VMContext, const CodeGenOptions &CGO, const LangOptions &Features, MangleContext &MContext) argument
/external/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUBaseInfo.cpp30 IsaVersion getIsaVersion(const FeatureBitset &Features) { argument
32 if (Features.test(FeatureISAVersion7_0_0))
35 if (Features.test(FeatureISAVersion7_0_1))
38 if (Features.test(FeatureISAVersion8_0_0))
41 if (Features.test(FeatureISAVersion8_0_1))
44 if (Features.test(FeatureISAVersion8_0_3))
51 const FeatureBitset &Features) {
53 IsaVersion ISA = getIsaVersion(Features);
50 initDefaultAMDKernelCodeT(amd_kernel_code_t &Header, const FeatureBitset &Features) argument
/external/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp36 SmallVector<StringRef, 3> Features; local
37 FS.split(Features, ',', -1, false /* KeepEmpty */);
38 for (auto &Feature : Features) {
/external/swiftshader/third_party/LLVM/tools/llvm-mc/
H A Dllvm-mc.cpp382 SubtargetFeatures Features; local
384 Features.AddFeature(MAttrs[i]);
385 FeaturesStr = Features.getString();
471 SubtargetFeatures Features; local
473 Features.AddFeature(MAttrs[i]);
474 FeaturesStr = Features.getString();
/external/libvncserver/webclients/novnc/include/
H A Dutil.js570 Util.Features = {xpath: !!(document.evaluate), air: !!(window.runtime), query: !!(document.querySelector)};
592 // 'webkit': (function () { try { return (navigator.taintEnabled) ? false : ((Util.Features.xpath) ? ((Util.Features.query) ? 525 : 420) : 419); } catch (e) { return false; } }()),
598 if (Util.Features.xpath) {
599 return (Util.Features.query) ? 525 : 420;
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp37 const char *Features, void *DisInfo, int TagType,
60 TheTarget->createMCSubtargetInfo(TT, CPU, Features);
36 LLVMCreateDisasmCPUFeatures(const char *TT, const char *CPU, const char *Features, void *DisInfo, int TagType, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp) argument
/external/llvm/lib/Target/
H A DTargetMachineC.cpp105 const char* Triple, const char* CPU, const char* Features,
142 return wrap(unwrap(T)->createTargetMachine(Triple, CPU, Features, opt, RM,
104 LLVMCreateTargetMachine(LLVMTargetRef T, const char* Triple, const char* CPU, const char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, LLVMCodeModel CodeModel) argument
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp475 SubtargetFeatures Features; local
477 Features.AddFeature(MAttrs[i]);
478 FeaturesStr = Features.getString();

Completed in 583 milliseconds

123