Home
last modified time | relevance | path

Searched refs:V1 (Results 1 – 25 of 193) sorted by relevance

12345678

/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp147 const llvm::APSInt& V1, const llvm::APSInt& V2) { in evalAPSInt() argument
154 return &getValue( V1 * V2 ); in evalAPSInt()
157 return &getValue( V1 / V2 ); in evalAPSInt()
160 return &getValue( V1 % V2 ); in evalAPSInt()
163 return &getValue( V1 + V2 ); in evalAPSInt()
166 return &getValue( V1 - V2 ); in evalAPSInt()
180 if (Amt >= V1.getBitWidth()) in evalAPSInt()
183 return &getValue( V1.operator<<( (unsigned) Amt )); in evalAPSInt()
198 if (Amt >= V1.getBitWidth()) in evalAPSInt()
201 return &getValue( V1.operator>>( (unsigned) Amt )); in evalAPSInt()
[all …]
/external/llvm/test/Transforms/EarlyCSE/
Dbasic.ll40 %V1 = load i32, i32* %P
42 %Diff = sub i32 %V1, %V2
49 %V1 = load i32, i32* %P
52 %Diff = sub i32 %V1, %V2
60 %V1 = load i32, i32* %P
67 %Diff = sub i32 %V1, %V2
75 %V1 = load i32, i32* %P
83 %Diff = sub i32 %V1, %V2
92 %V1 = load i32, i32* %P
97 ; Clobbers V1
[all …]
/external/guava/guava/src/com/google/common/cache/
DCacheBuilder.java476 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher( in weigher()
477 Weigher<? super K1, ? super V1> weigher) { in weigher()
486 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; in weigher()
500 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() { in getWeigher()
501 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE); in getWeigher()
736 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> removalListener( in removalListener()
737 RemovalListener<? super K1, ? super V1> listener) { in removalListener()
742 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; in removalListener()
749 <K1 extends K, V1 extends V> RemovalListener<K1, V1> getRemovalListener() { in getRemovalListener()
750 return (RemovalListener<K1, V1>) Objects.firstNonNull(removalListener, NullListener.INSTANCE); in getRemovalListener()
[all …]
/external/easymock/src/org/easymock/
DMockControl.java467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) { in expectAndReturn()
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn()
510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn()
532 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value, in expectAndReturn()
610 public <V1, V2 extends V1> void expectAndDefaultReturn(V1 ignored, V2 value) { in expectAndDefaultReturn()
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DCacheBuilder.java353 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() { in getWeigher()
354 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE); in getWeigher()
491 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> removalListener( in removalListener()
492 RemovalListener<? super K1, ? super V1> listener) { in removalListener()
497 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this; in removalListener()
504 <K1 extends K, V1 extends V> RemovalListener<K1, V1> getRemovalListener() { in getRemovalListener()
505 return (RemovalListener<K1, V1>) Objects.firstNonNull(removalListener, NullListener.INSTANCE); in getRemovalListener()
541 public <K1 extends K, V1 extends V> LoadingCache<K1, V1> build( in build()
542 CacheLoader<? super K1, V1> loader) { in build()
544 return new LocalCache.LocalLoadingCache<K1, V1>(this, loader); in build()
[all …]
/external/llvm/test/CodeGen/PowerPC/
Dvec_perf_shuffle.ll4 %V1 = load <4 x float>, <4 x float>* %P1 ; <<4 x float>> [#uses=1]
6 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 undef, i32 undef, i32 7, i32…
11 %V1 = load <4 x float>, <4 x float>* %P1 ; <<4 x float>> [#uses=1]
13 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 0, i32 undef, i32 5 >…
18 %V1 = load <4 x float>, <4 x float>* %P1 ; <<4 x float>> [#uses=1]
20 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 undef, i32 7, i32 3 >…
25 %V1 = load <4 x float>, <4 x float>* %P1 ; <<4 x float>> [#uses=1]
27 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 3, i32 7, i32 7, i32 4 > ; …
32 %V1 = load <4 x float>, <4 x float>* %P1 ; <<4 x float>> [#uses=1]
34 …%V3 = shufflevector <4 x float> %V1, <4 x float> %V2, <4 x i32> < i32 4, i32 4, i32 5, i32 0 > ; …
/external/llvm/include/llvm/IR/
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,
192 BinaryOperator *BO = Create(Opc, V1, V2, Name);
196 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2,
198 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB);
[all …]
/external/opencv/cxcore/src/
Dcxjacobieigens.cpp106 float *V1 = V, *A1 = A; in icvJacobiEigens_32f() local
109 for( p = 0; p < n - 1; p++, A1 += n, V1 += n ) in icvJacobiEigens_32f()
142 Vpi = V1[i]; in icvJacobiEigens_32f()
146 V1[i] = (float) (Vpi * c - Vqi * s); in icvJacobiEigens_32f()
153 Vpi = V1[i]; in icvJacobiEigens_32f()
157 V1[i] = (float) (Vpi * c - Vqi * s); in icvJacobiEigens_32f()
164 Vpi = V1[i]; in icvJacobiEigens_32f()
168 V1[i] = (float) (Vpi * c - Vqi * s); in icvJacobiEigens_32f()
223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V; in icvJacobiEigens_64d() local
234 for( i = 0; i < n; i++, V1 += n, A1 += n ) in icvJacobiEigens_64d()
[all …]
/external/clang/test/CodeGenCXX/
Dvtt-layout.cpp28 class V1 : public A1, public A2 { int i; }; class
31 class V2 : public B1, public B2, public virtual V1 { int i; };
33 class C1 : public virtual V1 { int i; };
47 class V1 : public A1, public virtual A2 { int i; }; class
50 class V2 : public B1, public B2, public virtual V1 { int i; };
52 class C1 : public virtual V1 { int i; };
Dweak-extern-typeinfo.cpp24 class V1 : public virtual A { class
28 class V2 : public virtual V1 {
31 void V1::foo() { } in foo()
Dmicrosoft-abi-rtti.cpp17 struct V1 : X1 {}; struct
18 struct W1 : virtual V1 {};
19 struct Y1 : W1, virtual V1 {} y1;
/external/llvm/unittests/Support/
DAlignOfTest.cpp62 struct V1 { virtual ~V1(); }; struct
64 struct V3 : V1 {
83 V1::~V1() {} in ~V1()
129 [AlignOf<V1>::Alignment > 0]
169 EXPECT_LE(alignOf<S1>(), alignOf<V1>()); in TEST()
170 EXPECT_LE(alignOf<V1>(), alignOf<V2>()); in TEST()
171 EXPECT_LE(alignOf<V1>(), alignOf<V3>()); in TEST()
172 EXPECT_LE(alignOf<V1>(), alignOf<V4>()); in TEST()
173 EXPECT_LE(alignOf<V1>(), alignOf<V5>()); in TEST()
174 EXPECT_LE(alignOf<V1>(), alignOf<V6>()); in TEST()
[all …]
/external/llvm/lib/Support/
DFileUtilities.cpp85 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local
103 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers()
112 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers()
139 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers()
143 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers()
144 else if (V1) in CompareNumbers()
145 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers()
151 << "Compared: " << V1 << " and " << V2 << '\n' in CompareNumbers()
152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
/external/clang/lib/CodeGen/
DCGValue.h42 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; variable
47 bool isScalar() const { return V1.getInt() == Scalar; } in isScalar()
48 bool isComplex() const { return V1.getInt() == Complex; } in isComplex()
49 bool isAggregate() const { return V1.getInt() == Aggregate; } in isAggregate()
56 return V1.getPointer(); in getScalarVal()
62 return std::make_pair(V1.getPointer(), V2.getPointer()); in getComplexVal()
68 return V1.getPointer(); in getAggregateAddr()
73 ER.V1.setPointer(V); in get()
74 ER.V1.setInt(Scalar); in get()
78 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) { in getComplex() argument
[all …]
/external/guava/guava/src/com/google/common/collect/
DTables.java332 public static <R, C, V1, V2> Table<R, C, V2> transformValues( in transformValues()
333 Table<R, C, V1> fromTable, Function<? super V1, V2> function) { in transformValues() argument
334 return new TransformedTable<R, C, V1, V2>(fromTable, function); in transformValues()
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) { in TransformedTable() argument
389 Function<Cell<R, C, V1>, Cell<R, C, V2>> cellFunction() { in cellFunction()
390 return new Function<Cell<R, C, V1>, Cell<R, C, V2>>() { in cellFunction()
391 @Override public Cell<R, C, V2> apply(Cell<R, C, V1> cell) { in cellFunction()
[all …]
DMaps.java1319 public static <K, V1, V2> Map<K, V2> transformValues(
1320 Map<K, V1> fromMap, Function<? super V1, V2> function) {
1363 public static <K, V1, V2> SortedMap<K, V2> transformValues(
1364 SortedMap<K, V1> fromMap, Function<? super V1, V2> function) {
1419 public static <K, V1, V2> Map<K, V2> transformEntries(
1420 Map<K, V1> fromMap,
1421 EntryTransformer<? super K, ? super V1, V2> transformer) {
1423 return transformEntries((SortedMap<K, V1>) fromMap, transformer);
1425 return new TransformedEntriesMap<K, V1, V2>(fromMap, transformer);
1480 public static <K, V1, V2> SortedMap<K, V2> transformEntries(
[all …]
DMultimaps.java1107 public static <K, V1, V2> Multimap<K, V2> transformValues(
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(
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> fromMultimap;
1178 final EntryTransformer<? super K, ? super V1, V2> transformer;
[all …]
/external/llvm/test/Transforms/SimplifyCFG/
D2002-05-21-PHIElimination.ll3 ; %V1 = add int %V1, 1
13 %V = phi i32 [ 0, %0 ], [ %V1, %Loop ] ; <i32> [#uses=1]
14 %V1 = add i32 %V, 1 ; <i32> [#uses=1]
/external/llvm/include/llvm/ADT/
DAPSInt.h319 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; }
320 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; }
321 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; }
322 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; }
323 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1; }
324 inline bool operator>(int64_t V1, const APSInt &V2) { return V2 < V1; }
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DMultimaps.java1018 public static <K, V1, V2> Multimap<K, V2> transformValues(
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(
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> fromMultimap;
1089 final EntryTransformer<? super K, ? super V1, V2> transformer;
[all …]
DMaps.java1290 public static <K, V1, V2> Map<K, V2> transformValues(
1291 Map<K, V1> fromMap, Function<? super V1, V2> function) {
1334 public static <K, V1, V2> SortedMap<K, V2> transformValues(
1335 SortedMap<K, V1> fromMap, Function<? super V1, V2> function) {
1390 public static <K, V1, V2> Map<K, V2> transformEntries(
1391 Map<K, V1> fromMap,
1392 EntryTransformer<? super K, ? super V1, V2> transformer) {
1394 return transformEntries((SortedMap<K, V1>) fromMap, transformer);
1396 return new TransformedEntriesMap<K, V1, V2>(fromMap, transformer);
1451 public static <K, V1, V2> SortedMap<K, V2> transformEntries(
[all …]
/external/llvm/test/Transforms/SLPVectorizer/X86/
Dextract.ll14 %V1 = extractelement <2 x double> %LD, i32 1
18 %A1 = fadd double %V1, 1.1
32 %V1 = extractelement <2 x double> %LD, i32 1
36 %A1 = fadd double %V1, 3.4
50 %V1 = extractelement <4 x double> %LD, i32 1
54 %A1 = fadd double %V1, 6.6
/external/llvm/test/Transforms/InstCombine/
Dapint-shl-trunc.ll5 ; CHECK: %[[V1:.*]] = shl i39 1, %A
6 ; CHECK: %[[V2:.*]] = and i39 %[[V1]], %X
17 ; CHECK: %[[V1:.*]] = shl i799 1, %A
18 ; CHECK: %[[V2:.*]] = and i799 %[[V1]], %X
/external/selinux/scripts/
DLindent4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
7 if [ $V1 -gt 2 ]; then
9 elif [ $V1 -eq 2 ]; then
/external/llvm/lib/IR/
DConstantFold.cpp727 Constant *V1, Constant *V2) { in ConstantFoldSelectInstruction() argument
730 if (Cond->isAllOnesValue()) return V1; in ConstantFoldSelectInstruction()
736 for (unsigned i = 0, e = V1->getType()->getVectorNumElements(); i != e;++i){ in ConstantFoldSelectInstruction()
738 Constant *V1Element = ConstantExpr::getExtractElement(V1, in ConstantFoldSelectInstruction()
755 if (Result.size() == V1->getType()->getVectorNumElements()) in ConstantFoldSelectInstruction()
760 if (isa<UndefValue>(V1)) return V1; in ConstantFoldSelectInstruction()
763 if (isa<UndefValue>(V1)) return V2; in ConstantFoldSelectInstruction()
764 if (isa<UndefValue>(V2)) return V1; in ConstantFoldSelectInstruction()
765 if (V1 == V2) return V1; in ConstantFoldSelectInstruction()
767 if (ConstantExpr *TrueVal = dyn_cast<ConstantExpr>(V1)) { in ConstantFoldSelectInstruction()
[all …]

12345678