HomeSort by relevance Sort by last modified time
    Searched refs:V2 (Results 26 - 50 of 391) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/math/
sin_s390x.s 92 WFCHDBS V2, V5, V2
98 WFMSDB V0, V3, V2, V3
110 WFMDB V1, V1, V2
130 WFMADB V2, V4, V6, V4
134 WFMADB V2, V0, V3, V0
138 WFMADB V2, V0, V4, V0
141 WFMADB V1, V0, V2, V0
164 WFMADB V2, V3, V4, V3
167 WFMADB V2, V0, V4, V
    [all...]
sinh_s390x.s 84 WFCEDBS V2, V2, V0
92 WFCEDBS V2, V2, V0
96 WFCHDBS V0, V2, V0
98 WFCHEDBS V4, V2, V6
102 WFCHDBS V2, V4, V2
148 WFCEDBS V2, V4, V2
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 210 struct V2 : virtual V1 {
211 int v2; member in struct:Test3::V2
232 // CHECK-7-NEXT: -- (Test3::V2, 32) vtable address --
236 // CHECK-8: Construction vtable for ('Test3::V2', 32) in 'Test3::C' (9 entries).
240 // CHECK-8-NEXT: 3 | Test3::V2 RTTI
241 // CHECK-8-NEXT: -- (Test3::V2, 32) vtable address --
242 // CHECK-8-NEXT: 4 | void Test3::V2::f()
245 // CHECK-8-NEXT: 7 | Test3::V2 RTTI
247 // CHECK-8-NEXT: 8 | void Test3::V2::f()
249 struct C : virtual V1, virtual V2 {
    [all...]
  /external/skia/src/sfnt/
SkOTTable_OS_2.h 34 struct V2 : SkOTTableOS2_V2 { } v2; member in union:SkOTTableOS2::Version
48 static_assert(sizeof(SkOTTableOS2::Version::V2) == 96, "sizeof_SkOTTableOS2__V2_not_96");
  /prebuilts/go/darwin-x86/test/fixedbugs/bug088.dir/
bug0.go 9 var V2 func() (a, b int);
  /prebuilts/go/linux-x86/test/fixedbugs/bug088.dir/
bug0.go 9 var V2 func() (a, b int);
  /prebuilts/go/darwin-x86/src/math/
sinh_s390x.s 84 WFCEDBS V2, V2, V0
92 WFCEDBS V2, V2, V0
96 WFCHDBS V0, V2, V0
98 WFCHEDBS V4, V2, V6
102 WFCHDBS V2, V4, V2
148 WFCEDBS V2, V4, V2
    [all...]
  /external/clang/test/CodeGen/
sse41-builtins.c 11 __m128i test_mm_blend_epi16(__m128i V1, __m128i V2) {
14 return _mm_blend_epi16(V1, V2, 42);
17 __m128d test_mm_blend_pd(__m128d V1, __m128d V2) {
20 return _mm_blend_pd(V1, V2, 2);
23 __m128 test_mm_blend_ps(__m128 V1, __m128 V2) {
26 return _mm_blend_ps(V1, V2, 6);
29 __m128i test_mm_blendv_epi8(__m128i V1, __m128i V2, __m128i V3) {
32 return _mm_blendv_epi8(V1, V2, V3);
35 __m128d test_mm_blendv_pd(__m128d V1, __m128d V2, __m128d V3) {
38 return _mm_blendv_pd(V1, V2, V3)
    [all...]
  /external/llvm/lib/IR/
ConstantFold.h 35 Constant *V1, Constant *V2);
39 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
46 Constant *V2);
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantFold.h 36 Constant *V1, Constant *V2);
40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
47 Constant *V2);
  /hardware/interfaces/tests/versioning/2.4/
Android.mk 8 LOCAL_MODULE := android.hardware.tests.versioning-V2.4-java
16 android.hardware.tests.versioning-V2.2-java \
17 android.hardware.tests.versioning-V2.3-java \
45 LOCAL_MODULE := android.hardware.tests.versioning-V2.4-java-static
53 android.hardware.tests.versioning-V2.2-java-static \
54 android.hardware.tests.versioning-V2.3-java-static \
  /external/swiftshader/third_party/LLVM/include/llvm/
InstrTypes.h 178 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,
198 BinaryOperator *BO = Create(Opc, V1, V2, Name);
202 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2,
204 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Tables.java 332 public static <R, C, V1, V2> Table<R, C, V2> transformValues(
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>
338 extends AbstractTable<R, C, V2> {
340 final Function<? super V1, V2> function;
343 Table<R, C, V1> fromTable, Function<? super V1, V2> function) {
352 @Override public V2 get(Object rowKey, Object columnKey) {
367 @Override public V2 put(R rowKey, C columnKey, V2 value)
    [all...]
  /external/easymock/src/org/easymock/
MockControl.java 462 * @param <V2> returned value type
467 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value) {
481 * @param <V2> returned value type
487 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
504 * @param <V2> returned value type
510 public <V1, V2 extends V1> void expectAndReturn(V1 ignored, V2 value,
525 * @param <V2> returned value type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug473.go 22 var V2 = F(V1)
56 expect("V2", V2, 38)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug473.go 22 var V2 = F(V1)
56 expect("V2", V2, 38)
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
pod_char_traits.h 58 template<typename V2>
60 from(const V2& v)
66 template<typename V2>
67 static V2
70 V2 ret = { static_cast<V2>(c.value) };
  /external/libcxx/test/std/utilities/variant/variant.visit/
visit.pass.cpp 116 using V2 = std::variant<int *, std::string>;
118 V2 v2("hello");
119 std::visit(obj, v, v2);
121 std::visit(cobj, v, v2);
123 std::visit(std::move(obj), v, v2); local
125 std::visit(std::move(cobj), v, v2); local
183 V v2(str);
184 const V &cv2 = v2;
187 std::visit(obj, v1, v2, v3)
279 V2 v2; local
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 328 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; }
329 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; }
330 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; }
331 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; }
332 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1;
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysisEvaluator.cpp 73 for (Value *V2 : Values) {
74 StringRef NameV2 = getName(V2);
78 if (PA.related(V1, V2, DL))

Completed in 1652 milliseconds

12 3 4 5 6 7 8 91011>>