HomeSort by relevance Sort by last modified time
    Searched refs:Features (Results 226 - 250 of 561) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm-c/
Disassembler.h 210 const char *Features, void *DisInfo, int TagType,
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/QemuFwCfgLib/
QemuFwCfgLib.c 162 UINT32 Features;
165 Features = QemuFwCfgRead32 ();
166 if ((Features & FW_CFG_F_DMA) != 0) {
  /external/tensorflow/tensorflow/core/example/
feature_util.h 23 // int id = example.features().feature().at("tag").int64_list().value(0)
26 // auto features = example->mutable_features();
27 // (*features->mutable_feature())["tag"].mutable_int64_list()->add_value(id)
29 // For float features you have to use float_list, for string - bytes_list.
35 // Modification of bytes features is slightly different:
62 // This will create a feature list keyed as "images" with two features:
75 // FeatureType, belongs to the Features or Example proto.
80 // Supported types for the proto: Example, Features.
88 // Copies values into Features and Example protos with the specified key.
91 // GetFeatures(proto) -> Features
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DirectoryLoader.java 41 import com.android.documentsui.base.Features;
68 private Features mFeatures;
71 Features features,
82 mFeatures = features;
Model.java 39 import com.android.documentsui.base.Features;
65 private final Features mFeatures;
77 public Model(Features features) {
78 mFeatures = features;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/MCParser/
MCTargetAsmParser.h 156 // features that are not currently enabled. MissingFeatures has a bit set for
161 Result.Features = MissingFeatures;
212 return Features;
260 uint64_t Features;
288 /// AvailableFeatures - The current set of available features.
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
Lan9118DxeUtil.c 616 UINT32 Features;
640 // Configure features to advertise
641 Features = IndirectPHYRead32 (PHY_INDEX_AUTO_NEG_ADVERT);
645 Features |= (PHYANA_10BASET | PHYANA_10BASETFD | PHYANA_100BASETX | PHYANA_100BASETXFD);
648 Features &= ~(PHYANA_PAUSE_OP_MASK);
649 Features |= 3 << 10;
651 Features &= FixedPcdGet32 (PcdLan9118NegotiationFeatureMask);
653 // Write the features
654 IndirectPHYWrite32 (PHY_INDEX_AUTO_NEG_ADVERT, Features);
  /external/jsoncpp/src/lib_json/
json_reader.cpp 31 // Implementation of class Features
34 Features::Features()
38 Features Features::all() { return Features(); }
40 Features Features::strictMode() {
41 Features features; local
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 76 /// The list of target specific features to enable or disable -- this should
78 std::vector<std::string> Features;
189 Opts.Features = Args.getAllArgValues(OPT_target_feature);
359 if (!Opts.Features.empty()) {
360 FS = Opts.Features[0];
361 for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i)
362 FS += "," + Opts.Features[i];
  /external/llvm/include/llvm/Support/
TargetRegistry.h 103 StringRef Features);
105 const Target &T, const Triple &TT, StringRef CPU, StringRef Features,
337 /// \param Features This specifies the string representation of the
338 /// additional target features.
340 StringRef Features) const {
343 return MCSubtargetInfoCtorFn(Triple(TheTriple), CPU, Features);
354 createTargetMachine(StringRef TT, StringRef CPU, StringRef Features,
360 return TargetMachineCtorFn(*this, Triple(TT), CPU, Features, Options, RM,
535 /// TargetRegistry - Generic interface to target specific features.
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
TargetRegistry.h 82 StringRef Features);
86 StringRef Features,
315 /// \arg Features - This specifies the string representation of the
316 /// additional target features.
318 StringRef Features) const {
321 return MCSubtargetInfoCtorFn(Triple, CPU, Features);
332 StringRef Features,
337 return TargetMachineCtorFn(*this, Triple, CPU, Features, RM, CM);
441 /// TargetRegistry - Generic interface to target specific features.
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
SubtargetEmitter.cpp 36 errs() << "Too many (> 64) subtarget features!\n";
69 // FeatureKeyValues - Emit data of all the subtarget features. Used by the
73 // Gather and sort all the features
83 OS << "// Sorted (by key) array of values for CPU features.\n"
152 Processor->getValueAsListOfDefs("Features");
592 // the subtarget features string.
597 std::vector<Record*> Features =
599 std::sort(Features.begin(), Features.end(), LessRecord());
601 OS << "// ParseSubtargetFeatures - Parses features string setting specified\n
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/api/
goapi_test.go 52 for _, feat := range w.Features() {
68 _, ok := w.features[feature]
72 delete(w.features, feature)
75 for _, feature := range w.Features() {
84 features, required, optional, exception []string
90 features: []string{"A", "B", "C", "D", "E", "F"},
97 features: []string{"C", "A"},
104 features: []string{"A", "C"},
113 features: []string{"A", "C"},
126 features: []string
    [all...]
  /prebuilts/go/linux-x86/src/cmd/api/
goapi_test.go 52 for _, feat := range w.Features() {
68 _, ok := w.features[feature]
72 delete(w.features, feature)
75 for _, feature := range w.Features() {
84 features, required, optional, exception []string
90 features: []string{"A", "B", "C", "D", "E", "F"},
97 features: []string{"C", "A"},
104 features: []string{"A", "C"},
113 features: []string{"A", "C"},
126 features: []string
    [all...]
  /external/clang/lib/Driver/
Tools.cpp 56 std::vector<const char *> &Features,
69 Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name));
677 std::vector<const char *> &Features) {
679 if (!llvm::ARM::getHWDivFeatures(HWDivID, Features))
686 std::vector<const char *> &Features) {
688 if (!llvm::ARM::getFPUFeatures(FPUID, Features))
692 // Decode ARM features from string like +[no]featureA+[no]featureB+...
694 std::vector<const char *> &Features) {
701 Features.push_back(FeatureName);
713 std::vector<const char *> &Features,
    [all...]
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 242 /* triple:string -> ?cpu:string -> ?features:string
246 value Features, value OptLevel, value RelocMode,
256 if(Features != Val_int(0))
257 FeaturesStr = String_val(Field(Features, 0));
  /external/swiftshader/third_party/LLVM/tools/llc/
llc.cpp 297 // Package up features to be passed to target/subtarget
300 SubtargetFeatures Features;
302 Features.AddFeature(MAttrs[i]);
303 FeaturesStr = Features.getString();
  /external/swiftshader/third_party/LLVM/tools/lto/
LTOCodeGenerator.cpp 269 SubtargetFeatures Features;
270 Features.getDefaultSubtargetFeatures(llvm::Triple(Triple));
271 std::string FeatureStr = Features.getString();

Completed in 1966 milliseconds

1 2 3 4 5 6 7 8 91011>>