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

1234567891011

/external/swiftshader/src/Renderer/
H A DTriangle.hpp25 Vertex V1; member in struct:sw::Triangle
/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 Dmicrosoft-abi-rtti.cpp17 struct V1 : X1 {}; struct in inherits:X1
18 struct W1 : virtual V1 {};
19 struct Y1 : W1, virtual V1 {} y1;
69 // CHECK-DAG: @"\01??_R2Y1@@8" = linkonce_odr constant [7 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Y1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat
74 // CHECK-DAG: @"\01??_R2W1@@8" = linkonce_odr constant [4 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat
75 // CHECK-DAG: @"\01??_R1A@A@3FA@V1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUV1@@@8" to i8*), i32 1, i32 0, i32 0, i32 4, i32 80, %rtti.ClassHierarchyDescriptor* @"\01??_R3V1@@8" }, comdat
78 // CHECK-DAG: @"\01??_R2V1@@8" = linkonce_odr constant [3 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@X1@@8", %rtti.BaseClassDescriptor* null], comdat
79 // CHECK-DAG: @"\01??_R1A@?0A@EA@V1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUV1@@@8" to i8*), i32 1, i32 0, i32 -1, i32 0, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3V1@@8" }, comdat
189 // X64-DAG: @"\01??_R2Y1@@8" = linkonce_odr constant [7 x i32] [i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Y1@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8" to i64), i64 ptrtoint (i8* @__ImageBase to i64)) to i32), i32 trunc (i64 sub nuw nsw (i64 ptrtoint (%rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1
[all...]
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 --
/external/llvm/lib/Fuzzer/test/
H A DSimpleFnAdapterTest.cpp12 static void TestFn(std::vector<uint8_t> V1, std::vector<uint8_t> V2) { argument
13 if (V1.size() > 0 && V1 == V2) {
/external/clang/test/CXX/special/class.init/class.inhctor.init/
H A Dp2.cpp15 struct V1 : virtual B { using B::B; }; struct in namespace:std_example
18 struct D2 : V1, V2 {
19 using V1::V1;
25 // then initializes the V1 and V2 base classes as if by a defaulted default constructor
/external/selinux/scripts/
H A DLindent4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
7 if [ $V1 -gt 2 ]; then
9 elif [ $V1 -eq 2 ]; then
/external/syslinux/devel/
H A DNindent4 V1=`echo $RES | cut -d' ' -f3 | cut -d'.' -f1`
7 if [ $V1 -gt 2 ]; then
9 elif [ $V1 -eq 2 ]; then
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp147 const llvm::APSInt& V1, const llvm::APSInt& V2) {
154 return &getValue( V1 * V2 );
159 return &getValue( V1 / V2 );
164 return &getValue( V1 % V2 );
167 return &getValue( V1 + V2 );
170 return &getValue( V1 - V2 );
184 if (Amt >= V1.getBitWidth())
187 return &getValue( V1.operator<<( (unsigned) Amt ));
202 if (Amt >= V1.getBitWidth())
205 return &getValue( V1
146 evalAPSInt(BinaryOperator::Opcode Op, const llvm::APSInt& V1, const llvm::APSInt& V2) argument
266 getPersistentSValPair(const SVal& V1, const SVal& V2) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DUse.cpp23 Value *V1(Val);
25 if (V1 != V2) {
26 if (V1) {
38 if (V1) {
39 RHS.Val = V1;
40 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/clang/test/Parser/
H A Dcxx0x-member-initializers.cpp26 struct V1 { struct
28 V1() : a(), b{} {} function in struct:V1
/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-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DCacheBuilder.java352 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() {
353 return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE);
490 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> removalListener(
491 RemovalListener<? super K1, ? super V1> listener) {
496 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this;
503 <K1 extends K, V1 extends V> RemovalListener<K1, V1> getRemovalListene
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
H A DTBSRequest.java18 private static final ASN1Integer V1 = new ASN1Integer(0); field in class:TBSRequest
38 this.version = V1;
49 this.version = V1;
72 version = V1;
77 version = V1;
153 if (!version.equals(V1) || versionSet)
/external/guava/guava/src/com/google/common/cache/
H A DCacheBuilder.java457 * instance, this method returns {@code CacheBuilder<K1, V1>}. From this point on, either the
475 public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher(
476 Weigher<? super K1, ? super V1> weigher) {
485 CacheBuilder<K1, V1> me = (CacheBuilder<K1, V1>) this;
499 <K1 extends K, V1 extends V> Weigher<K1, V1> getWeigher() {
500 return (Weigher<K1, V1>) MoreObjects.firstNonNull(weigher, OneWeigher.INSTANCE);
735 public <K1 extends K, V1 extend
[all...]
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h33 struct V1 : SkOTTableOS2_V1 { } v1; struct in union:SkOTTableOS2::Version
47 static_assert(sizeof(SkOTTableOS2::Version::V1) == 86, "sizeof_SkOTTableOS2__V1_not_86");
/external/skqp/src/sfnt/
H A DSkOTTable_OS_2.h33 struct V1 : SkOTTableOS2_V1 { } v1; struct in union:SkOTTableOS2::Version
47 static_assert(sizeof(SkOTTableOS2::Version::V1) == 86, "sizeof_SkOTTableOS2__V1_not_86");
/external/libxaac/decoder/armv8/
H A Dixheaacd_calcmaxspectralline.s36 LD1 {V1.4S}, [X0], #16
39 ABS V1.4S, V1.4S
44 ORR V3.16B, V1.16B, V3.16B
/external/clang/test/CodeGen/
H A Dsse41-builtins.c11 __m128i test_mm_blend_epi16(__m128i V1, __m128i V2) { argument
14 return _mm_blend_epi16(V1, V2, 42);
17 __m128d test_mm_blend_pd(__m128d V1, __m128d V2) { argument
20 return _mm_blend_pd(V1, V2, 2);
23 __m128 test_mm_blend_ps(__m128 V1, __m128 V2) { argument
26 return _mm_blend_ps(V1, V2, 6);
29 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) { argument
32 return _mm_blendv_epi8(V1, V2, V3);
35 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) { argument
38 return _mm_blendv_pd(V1, V
41 test_mm_blendv_ps(__m128 V1, __m128 V2, __m128 V3) argument
[all...]
/external/llvm/lib/IR/
H A DConstantFold.h35 Constant *V1, Constant *V2);
39 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
45 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
/external/llvm/unittests/ADT/
H A DIntrusiveRefCntPtrTest.cpp23 VirtualRefCounted *V1 = new VirtualRefCounted; local
24 IntrusiveRefCntPtr<VirtualRefCounted> R1 = V1;
25 VirtualRefCounted *V2 = new VirtualRefCounted(*V1);
/external/swiftshader/third_party/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...]

Completed in 3684 milliseconds

1234567891011