HomeSort by relevance Sort by last modified time
    Searched refs:Features (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/jsoncpp/include/json/
features.h 19 class JSON_API Features {
21 /** \brief A configuration that allows all features and assumes all strings
27 static Features all();
35 static Features strictMode();
39 Features();
forwards.h 22 // features.h
23 class Features;
  /external/llvm/lib/Support/
TargetParser.cpp 1 //===-- TargetParser - Parser for target features ---------------*- C++ -*-===//
10 // This file implements a target parser to recognise hardware features such as
28 // features they correspond to (use getFPUFeatures).
97 // features they correspond to (use getHWDivFeatures).
182 std::vector<const char *> &Features) {
188 Features.push_back("+hwdiv-arm");
190 Features.push_back("-hwdiv-arm");
193 Features.push_back("+hwdiv");
195 Features.push_back("-hwdiv");
201 std::vector<const char *> &Features) {
    [all...]
Host.cpp 694 // Look for the CPU features.
697 if (Lines[I].startswith("features")) {
744 bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
758 Features["cmov"] = (EDX >> 15) & 1;
759 Features["mmx"] = (EDX >> 23) & 1;
760 Features["sse"] = (EDX >> 25) & 1;
761 Features["sse2"] = (EDX >> 26) & 1;
762 Features["sse3"] = (ECX >> 0) & 1;
763 Features["ssse3"] = (ECX >> 9) & 1;
764 Features["sse4.1"] = (ECX >> 19) & 1
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/
FeaturesTest.java 24 * Test for features.
32 assertEquals(false, Features.TEST_FEATURE.isEnabled(null));
  /external/llvm/lib/CodeGen/
ParallelCG.cpp 29 const Target *TheTarget, StringRef CPU, StringRef Features,
34 M->getTargetTriple(), CPU, Features, Options, RM, CM, OL));
45 StringRef Features, const TargetOptions &Options,
55 codegen(M.get(), *OSs[0], TheTarget, CPU, Features, Options, RM, CM,
73 [TheTarget, CPU, Features, Options, RM, CM, OL, FileType,
84 codegen(MPartInCtx.get(), *ThreadOS, TheTarget, CPU, Features,
  /external/llvm/lib/MC/
MCSubtargetInfo.cpp 23 SubtargetFeatures Features(FS);
24 return Features.getFeatureBits(CPU, ProcDesc, ProcFeatures);
66 SubtargetFeatures Features;
67 FeatureBits = Features.ToggleFeature(FeatureBits, FS, ProcFeatures);
72 SubtargetFeatures Features;
73 FeatureBits = Features.ApplyFeatureFlag(FeatureBits, FS, ProcFeatures);
SubtargetFeature.cpp 63 /// Adding features.
65 // Don't add empty features.
68 Features.push_back(hasFlag(String) ? String.lower()
107 errs() << "Available features for this target:\n\n";
121 // Break up string into separate features
122 Split(Features, Initial);
127 return join(Features.begin(), Features.end(), ",");
247 "CPU features table is not sorted");
279 for (auto &Feature : Features) {
    [all...]
  /external/llvm/lib/Target/AMDGPU/Utils/
AMDGPUBaseInfo.h 32 IsaVersion getIsaVersion(const FeatureBitset &Features);
34 const FeatureBitset &Features);
AMDGPUBaseInfo.cpp 30 IsaVersion getIsaVersion(const FeatureBitset &Features) {
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))
48 const FeatureBitset &Features) {
50 IsaVersion ISA = getIsaVersion(Features);
  /external/clang/include/clang/Basic/
TargetOptions.h 42 /// \brief The list of target specific features to enable or disable, as written on the command line.
45 /// The list of target specific features to enable or disable -- this should
47 std::vector<std::string> Features;
  /external/llvm/include/llvm/Support/
Host.h 60 /// getHostCPUFeatures - Get the LLVM names for the host CPU features.
64 /// \param Features - A string mapping feature names to either
66 /// about exactly which features may appear in this map, except that they are
70 bool getHostCPUFeatures(StringMap<bool> &Features);
TargetParser.h 1 //===-- TargetParser - Parser for target features ---------------*- C++ -*-===//
10 // This file implements a target parser to recognise hardware features such as
113 bool getFPUFeatures(unsigned FPUKind, std::vector<const char *> &Features);
114 bool getHWDivFeatures(unsigned HWDivKind, std::vector<const char *> &Features);
116 std::vector<const char*> &Features);
  /external/clang/lib/Basic/
Targets.cpp 780 // Target cpu features.
898 initFeatureMap(llvm::StringMap<bool> &Features, DiagnosticsEngine &Diags,
902 bool handleTargetFeatures(std::vector<std::string> &Features,
905 void setFeatureEnabled(llvm::StringMap<bool> &Features, StringRef Name,
    [all...]
  /external/v8/src/compiler/
instruction-selector.h 48 class Features;
57 Features features = SupportedFeatures());
106 class Features final {
108 Features() : bits_(0) {}
109 explicit Features(unsigned bits) : bits_(bits) {}
110 explicit Features(CpuFeature f) : bits_(1u << f) {}
111 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {}
123 // Returns the features supported on the target platform.
124 static Features SupportedFeatures()
    [all...]
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 40 /// arch. Add any CPU features specified via -mcpu or -mattr.
80 // Package up features to be passed to target/subtarget
83 SubtargetFeatures Features;
85 Features.AddFeature(MAttrs[i]);
86 FeaturesStr = Features.getString();
  /external/llvm/tools/llvm-mc-fuzzer/
llvm-mc-fuzzer.cpp 121 // Package up features to be passed to target/subtarget
125 SubtargetFeatures Features;
127 Features.AddFeature(MAttrs[i]);
128 FeaturesStr = Features.getString();
  /external/llvm/include/llvm/CodeGen/
ParallelCG.h 35 StringRef CPU, StringRef Features, const TargetOptions &Options,
CommandFlags.h 315 SubtargetFeatures Features;
317 // If user asked for the 'native' CPU, we need to autodetect features.
319 // features the autodetected CPU name lists in the target. For example,
325 Features.AddFeature(F.first(), F.second);
329 Features.AddFeature(MAttrs[i]);
331 return Features.getString();
335 /// Features, and command line flags.
336 static inline void setFunctionAttributes(StringRef CPU, StringRef Features,
346 if (!Features.empty())
348 "target-features", Features)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZTargetMachine.cpp 35 SmallVector<StringRef, 3> Features;
36 FS.split(Features, ',', -1, false /* KeepEmpty */);
37 for (auto &Feature : Features) {
  /packages/apps/TV/src/com/android/tv/
Features.java 40 public final class Features {
106 private Features() {
  /packages/apps/TV/src/com/android/tv/receiver/
BootCompletedReceiver.java 27 import com.android.tv.Features;
61 if (Features.UNHIDE.isEnabled(context)) {
  /external/clang/lib/Lex/
LiteralSupport.cpp 46 static CharSourceRange MakeCharSourceRange(const LangOptions &Features,
53 TokLoc.getManager(), Features);
56 TokLoc.getManager(), Features);
66 const LangOptions &Features, FullSourceLoc TokLoc,
71 TokLoc.getManager(), Features);
73 MakeCharSourceRange(Features, TokLoc, TokBegin, TokRangeBegin, TokRangeEnd);
83 const LangOptions &Features) {
106 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
112 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
135 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsTargetStreamer.cpp 442 const FeatureBitset &Features = STI.getFeatureBits();
458 if (Features[Mips::FeatureMips64r6])
460 else if (Features[Mips::FeatureMips64r2] ||
461 Features[Mips::FeatureMips64r3] ||
462 Features[Mips::FeatureMips64r5])
464 else if (Features[Mips::FeatureMips64])
466 else if (Features[Mips::FeatureMips5])
468 else if (Features[Mips::FeatureMips4])
470 else if (Features[Mips::FeatureMips3])
472 else if (Features[Mips::FeatureMips32r6]
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 34 const LangOptions &Features, MangleContext &MContext)
35 : Context(Ctx), CodeGenOpts(CGO), Features(Features), MContext(MContext),
134 createTBAAScalarType(BTy->getName(Features), getChar());
152 if (!Features.CPlusPlus || !ETy->getDecl()->isExternallyVisible())
269 if (Features.CPlusPlus) {

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 9