/prebuilts/go/linux-x86/src/cmd/asm/internal/asm/testdata/ |
s390x.s | 299 VFTCIDB $4095, V1, V2 // e721fff0304a 302 VFEEZBS V1, V2, V31 // e7f120300880 304 VMNH V1, V2, V30 // e7e1200018fe 305 VO V2, V1, V0 // e7021000006a 306 VERLLVF V2, V30, V27 // e7be20002c73 316 VGEF $0, 2048(R15)(V1*1), V2 // VGEF 2048(R15)(V1*1), $0, V2 // e721f8000013 317 VSCEF $0, V2, 4095(R15)(V1*1) // VSCEF V2, $0, 4095(R15)(V1*1) // e721ffff001b 323 VERIMB $2, V31, V1, V2 // VERIMB V31, V1, $2, V2 // e72f1002047 [all...] |
/external/llvm/lib/IR/ |
ConstantFold.cpp | 726 Constant *V1, Constant *V2) { 728 if (Cond->isNullValue()) return V2; 739 Constant *V2Element = ConstantExpr::getExtractElement(V2, 760 return V2; 762 if (isa<UndefValue>(V1)) return V2; 763 if (isa<UndefValue>(V2)) return V1; 764 if (V1 == V2) return V1; 769 return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2); 771 if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) { [all...] |
/external/llvm/include/llvm/Analysis/ |
BasicAliasAnalysis.h | 176 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2); 182 const AAMDNodes &V1AAInfo, const Value *V2, 187 const AAMDNodes &PNAAInfo, const Value *V2, 191 const AAMDNodes &SIAAInfo, const Value *V2, 195 const Value *V2, uint64_t V2Size, AAMDNodes V2AATag);
|
AliasAnalysis.h | 193 AliasResult alias(const Value *V1, uint64_t V1Size, const Value *V2, 195 return alias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size)); 199 AliasResult alias(const Value *V1, const Value *V2) { 200 return alias(V1, MemoryLocation::UnknownSize, V2, 211 bool isNoAlias(const Value *V1, uint64_t V1Size, const Value *V2, 213 return isNoAlias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size)); 217 bool isNoAlias(const Value *V1, const Value *V2) { 218 return isNoAlias(MemoryLocation(V1), MemoryLocation(V2)); 228 bool isMustAlias(const Value *V1, const Value *V2) { 229 return alias(V1, 1, V2, 1) == MustAlias [all...] |
/external/llvm/lib/Target/Hexagon/ |
BitTracker.cpp | 444 const BitValue &V2 = A2[I]; 445 if (!V1.num() || !V2.num()) 447 unsigned S = bool(V1) + bool(V2) + Carry; 453 const BitValue &V2 = A2[I]; 457 Res[I] = BitValue::ref(V2); 458 else if (V2.is(Carry)) 478 const BitValue &V2 = A2[I]; 479 if (!V1.num() || !V2.num()) 481 unsigned S = bool(V1) - bool(V2) - Borrow; 487 const BitValue &V2 = A2[I] [all...] |
/external/clang/test/CodeGenCXX/ |
thunks.cpp | 54 struct V2 : virtual V1 { }; 63 virtual V2 *f(); 67 V2 *B::f() { return 0; }
|
vtable-layout.cpp | 241 struct V2 : virtual V1 { int v1; }; 252 // CHECK-9-NEXT: 2 | Test4::V2 *Test4::D::f() 254 // CHECK-9-NEXT: 3 | Test4::V2 *Test4::D::f() 257 // CHECK-9-NEXT: 1 | Test4::V2 *Test4::D::f() 259 virtual V2 *f(); 261 V2 *D::f() { return 0; }; 1051 int v2; member in struct:Test22::V2 [all...] |
/external/clang/test/Layout/ |
ms-x86-aligned-tail-padding.cpp | 31 struct V2 { 34 V2() : a(0xf0000011f0000011ll), a1(0xf0000011) {} 280 struct G : virtual V2, virtual V3 { 291 // CHECK-NEXT: 8 | struct V2 (virtual base) 304 // CHECK-X64-NEXT: 16 | struct V2 (virtual base)
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Platform.java | 123 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap( 125 EntryTransformer<? super K, ? super V1, V2> transformer) {
|
/external/llvm/lib/Support/ |
StringMap.cpp | 174 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); 175 (void)V2; 176 assert(V == V2 && "Didn't find key?");
|
/external/llvm/unittests/Support/ |
AlignOfTest.cpp | 63 struct V2 { int x; virtual ~V2(); }; 67 struct V4 : virtual V2 { int y; 74 struct V7 : virtual V2, virtual V6 { 84 V2::~V2() {} 146 [AlignOf<V2>::Alignment > 0] 186 EXPECT_LE(alignOf<V1>(), alignOf<V2>()); 268 EXPECT_EQ(alignOf<V2>(), alignOf<AlignedCharArrayUnion<V2> >()); [all...] |
/external/swiftshader/third_party/LLVM/lib/Support/ |
StringMap.cpp | 157 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); 158 (void)V2; 159 assert(V == V2 && "Didn't find key?");
|
/external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/ |
Cloning.cpp | 28 Value *V2 = V1->clone(); 30 Clones.insert(V2); 31 return cast<T>(V2);
|
/external/clang/test/Parser/ |
recovery.cpp | 144 enum E1 { V2 = 2 }; // expected-note {{declared here}} 158 case C1::V2:: break; // expected-error{{'V2' cannot appear before '::' because it is not a class, namespace, or enumeration; did you mean ':'?}}
|
/external/clang/test/SemaCXX/ |
cxx1y-variable-templates_in_class.cpp | 242 template<typename B> static const int V2; 246 template<typename A> template<typename B> const int S<A>::V2<B*> = 456; 255 static_assert(S<int>::V2<int*> == 456, ""); // FIXME expected-error {{}} 256 static_assert(S<int>::V2<int&> == 789, ""); // expected-error {{}} 258 template<typename A> template<typename B> const int S<A>::V2<B&> = 789; 259 static_assert(S<int>::V2<int&> == 789, ""); // FIXME expected-error {{}} 264 static_assert(S<char>::V2<int*> == 456, ""); 265 static_assert(S<char>::V2<int&> == 789, "");
|
/hardware/interfaces/audio/common/2.0/ |
Android.mk | 8 LOCAL_MODULE := android.hardware.audio.common-V2.0-java-constants
|
/hardware/interfaces/tests/versioning/2.3/ |
Android.mk | 8 LOCAL_MODULE := android.hardware.tests.versioning-V2.3-java 17 android.hardware.tests.versioning-V2.2-java \ 83 LOCAL_MODULE := android.hardware.tests.versioning-V2.3-java-static 92 android.hardware.tests.versioning-V2.2-java-static \
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
CertificateVersion.java | 50 public static final int V2 = 1; 102 if (version == V1 || version == V2 || version == V3)
|
/external/syslinux/gpxe/src/crypto/axtls/ |
bigint_impl.h | 101 #define V2 v->comps[v->size-2] /**< v2 for division */
|
/frameworks/base/services/core/ |
Android.mk | 22 android.hardware.light-V2.0-java \ 31 android.hardware.biometrics.fingerprint-V2.1-java-static \
|
/frameworks/opt/net/wifi/tests/wifitests/assets/ |
r1.PerProviderSubscription.conf | 16 b:InnerMethod=a:MS-CHAP-V2 83 b:InnerMethod=a:MS-CHAP-V2
|
r2.PerProviderSubscription.conf | 66 b:InnerMethod=a:MS-CHAP-V2 85 b:InnerMethod=a:MS-CHAP-V2
|
/hardware/interfaces/tests/baz/1.0/ |
IBaz.hal | 27 V2 = 1 << 2, 29 VALL = V0 | V1 | V2 | V3,
|
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
ConstantFold.cpp | 692 Constant *V1, Constant *V2) { 694 return CB->getZExtValue() ? V1 : V2; 697 if (Cond->isNullValue()) return V2; 705 ConstantVector *CP2 = dyn_cast<ConstantVector>(V2); 708 (CP2 || isa<ConstantAggregateZero>(V2))) { 734 return V2; 736 if (isa<UndefValue>(V1)) return V2; 737 if (isa<UndefValue>(V2)) return V1; 738 if (V1 == V2) return V1; 743 return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2); [all...] |