Searched refs:V1 (Results 1 - 25 of 103) sorted by relevance

12345

/external/clang/test/Parser/
H A Dcxx0x-member-initializers.cpp26 struct V1 { struct
28 V1() : a(), b{} {} function in struct:V1
/external/clang/test/CodeGenCXX/
H A Dweak-extern-typeinfo.cpp24 class V1 : public virtual A { class in inherits:A
28 class V2 : public virtual V1 {
31 void V1::foo() { }
H A Dvtt-layout.cpp28 class V1 : public A1, public A2 { int i; }; class in namespace:Test3
31 class V2 : public B1, public B2, public virtual V1 { int i; };
33 class C1 : public virtual V1 { int i; };
43 // (making A2 a virtual base of V1)
47 class V1 : public A1, public virtual A2 { int i; }; class in namespace:Test4
50 class V2 : public B1, public B2, public virtual V1 { int i; };
52 class C1 : public virtual V1 { int i; };
H A Dvtable-layout-abi-examples.cpp205 struct V1 { struct in namespace:Test3
210 struct V2 : virtual V1 {
225 // CHECK-7-NEXT: -- (Test3::V1, 16) vtable address --
246 // CHECK-8-NEXT: -- (Test3::V1, 16) vtable address --
249 struct C : virtual V1, virtual V2 {
271 // CHECK-9-NEXT: -- (Test3::V1, 24) vtable address --
292 // CHECK-10-NEXT: -- (Test3::V1, 24) vtable address --
313 // CHECK-11-NEXT: -- (Test3::V1, 24) vtable address --
H A Dvtable-layout.cpp202 struct V1 { int v1; }; struct in namespace:Test4
203 struct V2 : virtual V1 { int v1; };
206 virtual V1 *f();
943 struct V1 { struct in namespace:Test22
947 struct V2 : virtual V1 {
968 struct C : virtual V1, virtual V2 {
1326 struct V1 { }; struct in namespace:Test29
1327 struct V2 : virtual V1 { };
1330 virtual V1 *f();
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp147 const llvm::APSInt& V1, const llvm::APSInt& V2) {
154 return &getValue( V1 * V2 );
157 return &getValue( V1 / V2 );
160 return &getValue( V1 % V2 );
163 return &getValue( V1 + V2 );
166 return &getValue( V1 - V2 );
180 if (Amt > V1.getBitWidth())
183 return &getValue( V1.operator<<( (unsigned) Amt ));
198 if (Amt > V1.getBitWidth())
201 return &getValue( V1
146 evalAPSInt(BinaryOperator::Opcode Op, const llvm::APSInt& V1, const llvm::APSInt& V2) argument
262 getPersistentSValPair(const SVal& V1, const SVal& V2) argument
[all...]
/external/llvm/lib/VMCore/
H A DUse.cpp24 Value *V1(Val);
26 if (V1 != V2) {
27 if (V1) {
39 if (V1) {
40 RHS.Val = V1;
41 V1->addUse(RHS);
H A DConstantFold.h36 Constant *V1, Constant *V2);
40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
46 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
H A Dp6.cpp10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}}
/external/easymock/src/org/easymock/
H A DMockControl.java461 * @param <V1> mocked method return type
467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) {
480 * @param <V1> mocked method return type
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
503 * @param <V1> mocked method return type
510 public <V1, V
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DCacheBuilder.java393 * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the
410 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher(
411 Weigher<? super K1, ? super V1> weigher) {
420 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this;
434 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() {
435 return (Weigher<K1, V1>) Objects.firstNonNull(weigher, OneWeigher.INSTANCE);
678 * instance, this method returns {@code CacheBuilder<K1, V1>}
[all...]
/external/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp21 VirtualRefCounted *V1 = new VirtualRefCounted; local
22 IntrusiveRefCntPtr<VirtualRefCounted> R1 = V1;
23 VirtualRefCounted *V2 = new VirtualRefCounted(*V1);
/external/llvm/include/llvm/
H A DInstrTypes.h178 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
180 return Create(Instruction::OPC, V1, V2, Name);\
184 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
186 return Create(Instruction::OPC, V1, V2, Name, BB);\
190 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
192 return Create(Instruction::OPC, V1, V2, Name, I);\
196 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
198 BinaryOperator *BO = Create(Opc, V1, V2, Name);
202 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
204 BinaryOperator *BO = Create(Opc, V1, V
208 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
215 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = Ó) argument
221 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
227 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
234 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = Ó) argument
240 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
246 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
/external/libpcap/packaging/
H A Dpcap.spec38 V1=`echo 0.9.4 | sed 's/\\.[^\.]*$//g'`
40 ln -sf libpcap.so.0.9.4 libpcap.so.$V1
41 if test "$V2" -ne "$V1"; then
42 ln -sf libpcap.so.$V1 libpcap.so.$V2
45 ln -sf libpcap.so.$V1 libpcap.so
/external/llvm/lib/Support/
H A DFileUtilities.cpp86 double V1 = 0.0, V2 = 0.0; local
104 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd));
113 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd));
140 if (AbsTolerance < std::abs(V1-V2)) {
144 Diff = std::abs(V1/V2 - 1.0);
145 else if (V1)
146 Diff = std::abs(V2/V1 - 1.0);
152 << "Compared: " << V1 << " and " << V2 << '\n'
153 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
/external/skia/tests/
H A DClampRangeTest.cpp47 #define V1 1024 macro
62 int v = classify_value(fx, V0, V1);
76 int v = classify_value(fx, V0, V1);
85 range.init(fx, dx, count, V0, V1);
/external/clang/lib/CodeGen/
H A DCGValue.h40 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; member in class:clang::CodeGen::RValue
45 bool isScalar() const { return V1.getInt() == Scalar; }
46 bool isComplex() const { return V1.getInt() == Complex; }
47 bool isAggregate() const { return V1.getInt() == Aggregate; }
54 return V1.getPointer();
60 return std::make_pair(V1.getPointer(), V2.getPointer());
66 return V1.getPointer();
71 ER.V1.setPointer(V);
72 ER.V1.setInt(Scalar);
76 static RValue getComplex(llvm::Value *V1, llv argument
[all...]
/external/opencv/cxcore/src/
H A Dcxjacobieigens.cpp106 float *V1 = V, *A1 = A; local
109 for( p = 0; p < n - 1; p++, A1 += n, V1 += n )
142 Vpi = V1[i];
146 V1[i] = (float) (Vpi * c - Vqi * s);
153 Vpi = V1[i];
157 V1[i] = (float) (Vpi * c - Vqi * s);
164 Vpi = V1[i];
168 V1[i] = (float) (Vpi * c - Vqi * s);
223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V; local
234 for( i = 0; i < n; i++, V1
[all...]
/external/llvm/unittests/Support/
H A DAlignOfTest.cpp66 struct V1 { virtual ~V1(); }; struct in namespace:__anon9262
68 struct V3 : V1 { virtual ~V3(); };
116 [AlignOf<V1>::Alignment > 0]
166 EXPECT_LE(alignOf<S1>(), alignOf<V1>());
167 EXPECT_LE(alignOf<V1>(), alignOf<V2>());
168 EXPECT_LE(alignOf<V1>(), alignOf<V3>());
169 EXPECT_LE(alignOf<V1>(), alignOf<V4>());
170 EXPECT_LE(alignOf<V1>(), alignOf<V5>());
171 EXPECT_LE(alignOf<V1>(), alignO
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSortedMaps.java89 @Deprecated public static <K, V1, V2> SortedMap<K, V2> transformValues( argument
90 SortedMap<K, V1> fromMap, final Function<? super V1, V2> function) {
146 @Deprecated public static <K, V1, V2> SortedMap<K, V2> transformEntries( argument
147 final SortedMap<K, V1> fromMap,
148 EntryTransformer<? super K, ? super V1, V2> transformer) {
H A DMaps.java941 public static <K, V1, V2> Map<K, V2> transformValues( argument
942 Map<K, V1> fromMap, final Function<? super V1, V2> function) {
944 EntryTransformer<K, V1, V2> transformer =
945 new EntryTransformer<K, V1, V2>() {
947 public V2 transformEntry(K key, V1 value) {
994 public static <K, V1, V2> SortedMap<K, V2> transformValues( argument
995 SortedMap<K, V1> fromMap, final Function<? super V1, V2> function) {
997 EntryTransformer<K, V1, V
1058 transformEntries( Map<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1120 transformEntries( final SortedMap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1162 TransformedEntriesMap( Map<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
1252 TransformedEntriesSortedMap(SortedMap<K, V1> fromMap, EntryTransformer<? super K, ? super V1, V2> transformer) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h175 AliasResult alias(const Value *V1, uint64_t V1Size, argument
177 return alias(Location(V1, V1Size), Location(V2, V2Size));
181 AliasResult alias(const Value *V1, const Value *V2) { argument
182 return alias(V1, UnknownSize, V2, UnknownSize);
192 bool isNoAlias(const Value *V1, uint64_t V1Size, argument
194 return isNoAlias(Location(V1, V1Size), Location(V2, V2Size));
198 bool isNoAlias(const Value *V1, const Value *V2) { argument
199 return isNoAlias(Location(V1), Location(V2));
208 bool isMustAlias(const Value *V1, const Value *V2) { argument
209 return alias(V1,
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A D3d-cube.js70 function CalcCross(V0, V1) {
72 Cross[0] = V0[1]*V1[2] - V0[2]*V1[1];
73 Cross[1] = V0[2]*V1[0] - V0[0]*V1[2];
74 Cross[2] = V0[0]*V1[1] - V0[1]*V1[0];
78 function CalcNormal(V0, V1, V2) {
81 A[i] = V0[i] - V1[i];
82 B[i] = V2[i] - V1[
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A D3d-cube.js70 function CalcCross(V0, V1) {
72 Cross[0] = V0[1]*V1[2] - V0[2]*V1[1];
73 Cross[1] = V0[2]*V1[0] - V0[0]*V1[2];
74 Cross[2] = V0[0]*V1[1] - V0[1]*V1[0];
78 function CalcNormal(V0, V1, V2) {
81 A[i] = V0[i] - V1[i];
82 B[i] = V2[i] - V1[
[all...]
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java106 public <K1 extends K, V1 extends V> Cache<K1, V1> build() {
107 return new LocalManualCache<K1, V1>(this);
110 public <K1 extends K, V1 extends V> LoadingCache<K1, V1> build(
111 CacheLoader<? super K1, V1> loader) {
112 return new LocalLoadingCache<K1, V1>(this, loader);

Completed in 662 milliseconds

12345