/prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Basic/ |
TargetOptions.h | 50 /// \brief The list of target specific features to enable or disable, as written on the command line. 53 /// The list of target specific features to enable or disable -- this should 55 std::vector<std::string> Features; 59 /// Supported OpenCL extensions and optional core features.
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/ |
CommandFlags.h | 324 SubtargetFeatures Features; 326 // If user asked for the 'native' CPU, we need to autodetect features. 328 // features the autodetected CPU name lists in the target. For example, 334 Features.AddFeature(F.first(), F.second); 338 Features.AddFeature(MAttrs[i]); 340 return Features.getString(); 344 /// Features, and command line flags. 345 static inline void setFunctionAttributes(StringRef CPU, StringRef Features, 354 if (!Features.empty()) 355 NewAttrs.addAttribute("target-features", Features) [all...] |
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/PDB/Native/ |
InfoStream.h | 80 PdbRaw_Features Features = PdbFeatureNone;
|
InfoStreamBuilder.h | 53 std::vector<PdbRaw_FeatureSig> Features;
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/ |
SubtargetFeature.h | 11 /// The intent is to be able to package specific features that should or should 13 /// as example, gather chip info from the command line, a long with features 34 /// Container class for subtarget features. 85 /// Manages the enabling and disabling of subtarget specific features. 87 /// Features are encoded as a string of the form 90 /// Each of the remaining features is prefixed with + or - indicating whether 94 std::vector<std::string> Features; ///< Subtarget features as a vector 99 /// Returns features as a string. 102 /// Adds Features [all...] |
/prebuilts/clang/host/linux-x86/clang-4639204/prebuilt_include/llvm/lib/Fuzzer/ |
FuzzerMerge.h | 13 // it so that only inputs with new coverage ('features') are added. 36 // within the same size the inputs that have more new features. 55 Vector<uint32_t> Features;
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Basic/ |
TargetOptions.h | 50 /// \brief The list of target specific features to enable or disable, as written on the command line. 53 /// The list of target specific features to enable or disable -- this should 55 std::vector<std::string> Features; 59 /// Supported OpenCL extensions and optional core features.
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/ |
CommandFlags.h | 324 SubtargetFeatures Features; 326 // If user asked for the 'native' CPU, we need to autodetect features. 328 // features the autodetected CPU name lists in the target. For example, 334 Features.AddFeature(F.first(), F.second); 338 Features.AddFeature(MAttrs[i]); 340 return Features.getString(); 344 /// Features, and command line flags. 345 static inline void setFunctionAttributes(StringRef CPU, StringRef Features, 354 if (!Features.empty()) 355 NewAttrs.addAttribute("target-features", Features) [all...] |
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/Native/ |
InfoStream.h | 80 PdbRaw_Features Features = PdbFeatureNone;
|
InfoStreamBuilder.h | 53 std::vector<PdbRaw_FeatureSig> Features;
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/ |
SubtargetFeature.h | 11 /// The intent is to be able to package specific features that should or should 13 /// as example, gather chip info from the command line, a long with features 34 /// Container class for subtarget features. 85 /// Manages the enabling and disabling of subtarget specific features. 87 /// Features are encoded as a string of the form 90 /// Each of the remaining features is prefixed with + or - indicating whether 94 std::vector<std::string> Features; ///< Subtarget features as a vector 99 /// Returns features as a string. 102 /// Adds Features [all...] |
/prebuilts/clang/host/linux-x86/clang-4691093/prebuilt_include/llvm/lib/Fuzzer/ |
FuzzerMerge.h | 13 // it so that only inputs with new coverage ('features') are added. 36 // within the same size the inputs that have more new features. 55 Vector<uint32_t> Features;
|
/device/linaro/bootloader/edk2/OvmfPkg/VirtioGpuDxe/ |
Commands.c | 44 UINT64 Features;
80 Status = VgpuDev->VirtIo->GetDeviceFeatures (VgpuDev->VirtIo, &Features);
84 if ((Features & VIRTIO_F_VERSION_1) == 0) {
89 // We only want the most basic 2D features.
91 Features &= VIRTIO_F_VERSION_1;
99 Status = Virtio10WriteFeatures (VgpuDev->VirtIo, Features, &NextDevStat);
|
/device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/ |
DriverBinding.c | 67 UINT64 Features;
72 // Interrogate the device for features (virtio-0.9.5, 2.2.1 Device
94 // step 4a -- retrieve and validate features
96 Status = Dev->VirtIo->GetDeviceFeatures (Dev->VirtIo, &Features);
104 if ((Features & VIRTIO_NET_F_MAC) == 0) {
123 if ((Features & VIRTIO_NET_F_STATUS) == 0) {
|
SnpInitialize.c | 384 UINT64 Features;
430 // step 4a -- retrieve features. Note that we're past validating required
431 // features in VirtioNetGetFeatures().
433 Status = Dev->VirtIo->GetDeviceFeatures (Dev->VirtIo, &Features);
438 ASSERT (Features & VIRTIO_NET_F_MAC);
440 !!(Features & VIRTIO_NET_F_STATUS));
442 Features &= VIRTIO_NET_F_MAC | VIRTIO_NET_F_STATUS | VIRTIO_F_VERSION_1;
446 // discovery, and the device can also reject the selected set of features.
449 Status = Virtio10WriteFeatures (Dev->VirtIo, Features, &NextDevStat);
469 // step 5 -- keep only the features we want [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZTargetMachine.cpp | 36 SmallVector<StringRef, 3> Features; 37 FS.split(Features, ',', -1, false /* KeepEmpty */); 38 for (auto &Feature : Features) {
|
/external/llvm/tools/llvm-mc-fuzzer/ |
llvm-mc-fuzzer.cpp | 149 // Package up features to be passed to target/subtarget 153 SubtargetFeatures Features; 155 Features.AddFeature(MAttrs[i]); 156 FeaturesStr = Features.getString();
|
/device/linaro/bootloader/edk2/OvmfPkg/VirtioRngDxe/ |
VirtioRng.c | 206 UINT64 Features;
238 // step 4a -- retrieve and validate features
240 Status = Dev->VirtIo->GetDeviceFeatures (Dev->VirtIo, &Features);
245 Features &= VIRTIO_F_VERSION_1;
249 // discovery, and the device can also reject the selected set of features.
252 Status = Virtio10WriteFeatures (Dev->VirtIo, Features, &NextDevStat);
306 // step 5 -- Report understood features and guest-tuneables.
309 Features &= ~(UINT64)VIRTIO_F_VERSION_1;
310 Status = Dev->VirtIo->SetGuestFeatures (Dev->VirtIo, Features);
|
/external/clang/lib/CodeGen/ |
CodeGenTBAA.h | 48 const LangOptions &Features; 94 const LangOptions &Features,
|
/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();
|
/device/linaro/bootloader/edk2/OvmfPkg/VirtioBlkDxe/ |
VirtioBlk.c | 596 UINT64 Features;
638 // step 4a -- retrieve and validate features
640 Status = Dev->VirtIo->GetDeviceFeatures (Dev->VirtIo, &Features);
654 if (Features & VIRTIO_BLK_F_BLK_SIZE) {
673 if (Features & VIRTIO_BLK_F_TOPOLOGY) {
695 Features &= VIRTIO_BLK_F_BLK_SIZE | VIRTIO_BLK_F_TOPOLOGY | VIRTIO_BLK_F_RO |
700 // discovery, and the device can also reject the selected set of features.
703 Status = Virtio10WriteFeatures (Dev->VirtIo, Features, &NextDevStat);
754 // step 5 -- Report understood features.
757 Features &= ~(UINT64)VIRTIO_F_VERSION_1; [all...] |
/external/swiftshader/third_party/LLVM/lib/MC/ |
SubtargetFeature.cpp | 107 // Return the features string 111 /// Adding features. 114 // Don't add empty features 117 Features.push_back(PrependFlag(LowercaseString(String), IsEnabled)); 163 errs() << "Available features for this target:\n\n"; 180 // Break up string into separate features 181 Split(Features, Initial); 186 return Join(Features); 276 "CPU features table is not sorted"); 307 for (size_t i = 0, E = Features.size(); i < E; i++) [all...] |
/external/swiftshader/third_party/LLVM/tools/llvm-mc/ |
llvm-mc.cpp | 379 // Package up features to be passed to target/subtarget 382 SubtargetFeatures Features; 384 Features.AddFeature(MAttrs[i]); 385 FeaturesStr = Features.getString(); 468 // Package up features to be passed to target/subtarget 471 SubtargetFeatures Features; 473 Features.AddFeature(MAttrs[i]); 474 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();
|
/packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
Features.java | 29 public interface Features { 63 public static Features create(Context context) { 67 final class RuntimeFeatures implements Features {
|