Searched defs:V1 (Results 26 - 50 of 86) sorted by relevance

1234

/external/clang/test/Parser/
H A Drecovery.cpp141 const int V1 = 1; // expected-note {{declared here}} member in namespace:MissingBrace::S::PR17084::TempID::ns
157 case ns::V1:: break; // expected-error{{'V1' cannot appear before '::' because it is not a class, namespace, or enumeration; did you mean ':'?}}
H A DMicrosoftExtensions.cpp311 __declspec(property()) int V1; // expected-error {{property does not specify a getter or a putter}} member in struct:pure_virtual_dtor_inline::StructWithProperty
/external/guava/guava/src/com/google/common/collect/
H A DTables.java332 public static <R, C, V1, V2> Table<R, C, V2> transformValues( argument
333 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
334 return new TransformedTable<R, C, V1, V2>(fromTable, function);
337 private static class TransformedTable<R, C, V1, V2>
339 final Table<R, C, V1> fromTable;
340 final Function<? super V1, V2> function;
343 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
389 Function<Cell<R, C, V1>, Cel
342 TransformedTable( Table<R, C, V1> fromTable, Function<? super V1, V2> function) argument
[all...]
H A DMultimaps.java1107 public static <K, V1, V2> Multimap<K, V2> transformValues( argument
1108 Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) {
1110 EntryTransformer<K, V1, V2> transformer = Maps.asEntryTransformer(function);
1169 public static <K, V1, V2> Multimap<K, V2> transformEntries( argument
1170 Multimap<K, V1> fromMap,
1171 EntryTransformer<? super K, ? super V1, V2> transformer) {
1172 return new TransformedEntriesMultimap<K, V1, V2>(fromMap, transformer);
1175 private static class TransformedEntriesMultimap<K, V1, V2>
1177 final Multimap<K, V1> fromMultima
1180 TransformedEntriesMultimap(Multimap<K, V1> fromMultimap, final EntryTransformer<? super K, ? super V1, V2> transformer) argument
1317 transformValues( ListMultimap<K, V1> fromMultimap, final Function<? super V1, V2> function) argument
1377 transformEntries( ListMultimap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1387 TransformedEntriesListMultimap(ListMultimap<K, V1> fromMultimap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DAPSInt.h319 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; } argument
320 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; } argument
321 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; } argument
322 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; } argument
323 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1; } argument
324 operator >(int64_t V1, const APSInt &V2) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DTargetFolder.h252 Constant *CreateShuffleVector(Constant *V1, Constant *V2, argument
254 return Fold(ConstantExpr::getShuffleVector(V1, V2, Mask));
H A DAliasAnalysis.h185 AliasResult alias(const Value *V1, uint64_t V1Size, argument
187 return alias(Location(V1, V1Size), Location(V2, V2Size));
191 AliasResult alias(const Value *V1, const Value *V2) { argument
192 return alias(V1, UnknownSize, V2, UnknownSize);
202 bool isNoAlias(const Value *V1, uint64_t V1Size, argument
204 return isNoAlias(Location(V1, V1Size), Location(V2, V2Size));
208 bool isNoAlias(const Value *V1, const Value *V2) { argument
209 return isNoAlias(Location(V1), Location(V2));
218 bool isMustAlias(const Value *V1, const Value *V2) { argument
219 return alias(V1,
[all...]
/external/llvm/include/llvm/IR/
H A DNoFolder.h281 Instruction *CreateShuffleVector(Constant *V1, Constant *V2, argument
283 return new ShuffleVectorInst(V1, V2, Mask);
H A DInstrTypes.h172 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
174 return Create(Instruction::OPC, V1, V2, Name);\
178 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
180 return Create(Instruction::OPC, V1, V2, Name, BB);\
184 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
186 return Create(Instruction::OPC, V1, V2, Name, I);\
190 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
192 BinaryOperator *BO = Create(Opc, V1, V2, Name);
196 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
198 BinaryOperator *BO = Create(Opc, V1, V
202 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
209 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
215 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
221 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
228 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
234 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
240 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp416 Value *V1, *V2; local
427 match(Op0BO->getOperand(1), m_Shr(m_Value(V1),
432 Value *X = Builder->CreateBinOp(Op0BO->getOpcode(), YS, V1,
447 m_And(m_OneUse(m_Shr(m_Value(V1), m_Specific(Op1))),
453 Value *XM = Builder->CreateAnd(V1, ConstantExpr::getShl(CC, Op1),
454 V1->getName()+".mask");
463 match(Op0BO->getOperand(0), m_Shr(m_Value(V1),
468 Value *X = Builder->CreateBinOp(Op0BO->getOpcode(), V1, YS,
482 m_And(m_OneUse(m_Shr(m_Value(V1), m_Value(V2))),
487 Value *XM = Builder->CreateAnd(V1, ConstantExp
[all...]
H A DInstCombineLoadStoreAlloca.cpp752 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
756 LoadInst *V1 = Builder->CreateLoad(SI->getOperand(1), local
760 V1->setAlignment(Align);
762 return SelectInst::Create(SI->getCondition(), V1, V2);
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp37 T *clone(T *V1) { argument
38 Value *V2 = V1->clone();
39 Orig.insert(V1);
/external/clang/lib/Driver/
H A DToolChains.h415 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { argument
417 return TargetVersion < VersionTuple(V0, V1, V2);
420 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { argument
422 return TargetVersion < VersionTuple(V0, V1, V2);
/external/clang/test/CodeGen/
H A Dsse-builtins.c241 __m128d test_blend_pd(__m128d V1, __m128d V2) { argument
244 return _mm_blend_pd(V1, V2, 1);
247 __m128 test_blend_ps(__m128 V1, __m128 V2) { argument
250 return _mm_blend_ps(V1, V2, 5);
253 __m128i test_blend_epi16(__m128i V1, __m128i V2) { argument
256 return _mm_blend_epi16(V1, V2, 42);
/external/clang/test/CodeGenCXX/
H A Dvtable-layout.cpp240 struct V1 { int v1; }; struct in namespace:Test4
241 struct V2 : virtual V1 { int v1; };
244 virtual V1 *f();
1046 struct V1 { struct in namespace:Test22
1050 struct V2 : virtual V1 {
1074 struct C : virtual V1, virtual V2 {
1447 struct V1 { }; struct in namespace:Test29
1448 struct V2 : virtual V1 { };
1451 virtual V1 *f();
/external/llvm/lib/Analysis/
H A DLint.cpp155 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &...Vs) { argument
157 WriteValues({V1, Vs...});
H A DBasicAliasAnalysis.cpp534 /// In addition to pointer equivalence of \p V1 and \p V2 this checks
539 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2);
550 AliasResult aliasGEP(const GEPOperator *V1, uint64_t V1Size,
569 AliasResult aliasCheck(const Value *V1, uint64_t V1Size,
980 /// against another pointer. We know that V1 is a GEP, but we don't know
1379 BasicAliasAnalysis::aliasCheck(const Value *V1, uint64_t V1Size, argument
1389 V1 = V1->stripPointerCasts();
1398 if (isValueEqualInPotentialCycles(V1, V2))
1401 if (!V1
[all...]
H A DConstantFolding.cpp1611 APFloat V1 = Op1->getValueAPF(); local
1613 V1.copySign(V2);
1614 return ConstantFP::get(Ty->getContext(), V1);
/external/llvm/unittests/ADT/
H A DSmallVectorTest.cpp908 SmallVector<int, 2> V1 = {}; local
909 EXPECT_TRUE(V1.empty());
910 V1 = {0, 0};
911 EXPECT_TRUE(makeArrayRef(V1).equals({0, 0}));
912 V1 = {-1, -1};
913 EXPECT_TRUE(makeArrayRef(V1).equals({-1, -1}));
/external/llvm/unittests/IR/
H A DInstructionsTest.cpp399 Value *V1 = Builder.CreateFAdd(I, I, "", MD1); local
400 EXPECT_TRUE(isa<FPMathOperator>(V1));
401 FPMathOperator *O1 = cast<FPMathOperator>(V1);
403 delete V1;
/external/clang/lib/CodeGen/
H A DCGValue.h42 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; member in class:clang::CodeGen::RValue
47 bool isScalar() const { return V1.getInt() == Scalar; }
48 bool isComplex() const { return V1.getInt() == Complex; }
49 bool isAggregate() const { return V1.getInt() == Aggregate; }
56 return V1.getPointer();
62 return std::make_pair(V1.getPointer(), V2.getPointer());
68 return V1.getPointer();
73 ER.V1.setPointer(V);
74 ER.V1.setInt(Scalar);
78 static RValue getComplex(llvm::Value *V1, llv argument
[all...]
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp92 int V1, V2, V3; variable
95 void set3(I3<&V1, &V2>) {};
100 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, [...]>' to 'I3<&V1, [...]>' for 1st argument
102 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, &V2>' to 'I3<&V1, &V2>' for 1st argument
106 // CHECK-ELIDE-TREE: [&V3 != &V1]
111 // CHECK-NOELIDE-TREE: [&V3 != &V1]
/external/clang/test/SemaCXX/
H A DMicrosoftExtensions.cpp197 __declspec(property(get=GetV)) int V1; member in struct:StructWithProperty
209 sp.V1 = 12; // expected-error{{no setter defined for property 'V1'}}
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimaps.java1018 public static <K, V1, V2> Multimap<K, V2> transformValues( argument
1019 Multimap<K, V1> fromMultimap, final Function<? super V1, V2> function) {
1021 EntryTransformer<K, V1, V2> transformer = Maps.asEntryTransformer(function);
1080 public static <K, V1, V2> Multimap<K, V2> transformEntries( argument
1081 Multimap<K, V1> fromMap,
1082 EntryTransformer<? super K, ? super V1, V2> transformer) {
1083 return new TransformedEntriesMultimap<K, V1, V2>(fromMap, transformer);
1086 private static class TransformedEntriesMultimap<K, V1, V2>
1088 final Multimap<K, V1> fromMultima
1091 TransformedEntriesMultimap(Multimap<K, V1> fromMultimap, final EntryTransformer<? super K, ? super V1, V2> transformer) argument
1228 transformValues( ListMultimap<K, V1> fromMultimap, final Function<? super V1, V2> function) argument
1288 transformEntries( ListMultimap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1298 TransformedEntriesListMultimap(ListMultimap<K, V1> fromMultimap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp727 Constant *V1, Constant *V2) {
730 if (Cond->isAllOnesValue()) return V1;
736 for (unsigned i = 0, e = V1->getType()->getVectorNumElements(); i != e;++i){
738 Constant *V1Element = ConstantExpr::getExtractElement(V1,
755 if (Result.size() == V1->getType()->getVectorNumElements())
760 if (isa<UndefValue>(V1)) return V1;
763 if (isa<UndefValue>(V1)) return V2;
764 if (isa<UndefValue>(V2)) return V1;
765 if (V1
726 ConstantFoldSelectInstruction(Constant *Cond, Constant *V1, Constant *V2) argument
824 ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, Constant *Mask) argument
1324 evaluateFCmpRelation(Constant *V1, Constant *V2) argument
1412 evaluateICmpRelation(Constant *V1, Constant *V2, bool isSigned) argument
1726 APInt V1 = cast<ConstantInt>(C1)->getValue(); local
[all...]

Completed in 1326 milliseconds

1234