HomeSort by relevance Sort by last modified time
    Searched refs:v2 (Results 251 - 275 of 3238) sorted by null

<<11121314151617181920>>

  /external/clang/test/Sema/
vector-assign.c 10 v2u v2; local
15 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from 'v2u' (vector of 2 'unsigned int' values)}}
20 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v2s' (vector of 2 'int' values)}}
21 v2 = v3; // expected-error {{assigning to 'v2u' (vector of 2 'unsigned int' values) from incompatible type 'v1s' (vector of 1 'int' value)}}
22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v2f' (vector of 2 'float' values)}}
23 v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v4ss' (vector of 4 'short' values)}}
26 v3 = v2; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2u' (vector of 2 'unsigned int' values)}}
31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from 'v2u' (vector of 2 'unsigned int' values)}}
36 v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' values) from 'v2u' (vector of 2 'unsigned int' values)}}
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
copy.pass.cpp 38 std::deque<int, test_allocator<int> > v2 = v; local
39 assert(v2 == v);
40 assert(v2.get_allocator() == v.get_allocator());
45 std::deque<int, other_allocator<int> > v2 = v; local
46 assert(v2 == v);
47 assert(v2.get_allocator() == other_allocator<int>(-2));
56 std::deque<int, min_allocator<int> > v2 = v; local
57 assert(v2 == v);
58 assert(v2.get_allocator() == v.get_allocator());
  /external/libcxx/test/std/containers/sequences/vector.bool/
copy.pass.cpp 42 std::vector<bool, test_allocator<bool> > v2 = v; local
43 assert(v2 == v);
44 assert(v2.get_allocator() == v.get_allocator());
49 std::vector<bool, other_allocator<bool> > v2 = v; local
50 assert(v2 == v);
51 assert(v2.get_allocator() == other_allocator<bool>(-2));
60 std::vector<bool, min_allocator<bool> > v2 = v; local
61 assert(v2 == v);
62 assert(v2.get_allocator() == v.get_allocator());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
copy.pass.cpp 38 std::deque<int, test_allocator<int> > v2 = v; local
39 assert(v2 == v);
40 assert(v2.get_allocator() == v.get_allocator());
45 std::deque<int, other_allocator<int> > v2 = v; local
46 assert(v2 == v);
47 assert(v2.get_allocator() == other_allocator<int>(-2));
56 std::deque<int, min_allocator<int> > v2 = v; local
57 assert(v2 == v);
58 assert(v2.get_allocator() == v.get_allocator());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
copy.pass.cpp 42 std::vector<bool, test_allocator<bool> > v2 = v; local
43 assert(v2 == v);
44 assert(v2.get_allocator() == v.get_allocator());
49 std::vector<bool, other_allocator<bool> > v2 = v; local
50 assert(v2 == v);
51 assert(v2.get_allocator() == other_allocator<bool>(-2));
60 std::vector<bool, min_allocator<bool> > v2 = v; local
61 assert(v2 == v);
62 assert(v2.get_allocator() == v.get_allocator());
  /external/capstone/suite/MC/AArch64/
neon-mul-div-instructions.s.cs 2 0x20,0x9c,0x22,0x0e = mul v0.8b, v1.8b, v2.8b
3 0x20,0x9c,0x22,0x4e = mul v0.16b, v1.16b, v2.16b
4 0x20,0x9c,0x62,0x0e = mul v0.4h, v1.4h, v2.4h
5 0x20,0x9c,0x62,0x4e = mul v0.8h, v1.8h, v2.8h
6 0x20,0x9c,0xa2,0x0e = mul v0.2s, v1.2s, v2.2s
7 0x20,0x9c,0xa2,0x4e = mul v0.4s, v1.4s, v2.4s
8 0x20,0xdc,0x22,0x2e = fmul v0.2s, v1.2s, v2.2s
9 0x20,0xdc,0x22,0x6e = fmul v0.4s, v1.4s, v2.4s
10 0x20,0xdc,0x62,0x6e = fmul v0.2d, v1.2d, v2.2d
11 0x20,0xfc,0x22,0x2e = fdiv v0.2s, v1.2s, v2.2
    [all...]
  /external/clang/test/CodeGen/
mmx-inline-asm.c 9 __m64 v1, v2, v3, v4, v5, v6, v7; local
19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
vld_dup.c 9 int32_t v2[4]; local
28 v3 = vld4_dup_s32(v2);
  /external/clang/test/PCH/
cxx-implicit-moves.cpp 20 float test(float v1, float v2) {
21 NSSize s = NSMakeSize(v1, v2);
  /external/eigen/doc/snippets/
Tutorial_ReshapeMat2Vec.cpp 10 Map<RowVectorXf> v2(M2.data(), M2.size());
11 cout << "v2:" << endl << v2 << endl
  /external/libcxx/test/libcxx/containers/sequences/list/list.modifiers/
insert_iter_rvalue_db1.pass.cpp 27 std::list<int> v2(3);
28 v1.insert(v2.begin(), 4);
insert_iter_value_db1.pass.cpp 28 std::list<int> v2(3);
30 v1.insert(v2.begin(), i);
  /external/libcxx/test/libcxx/containers/sequences/list/list.ops/
db_splice_pos_list_iter.pass.cpp 28 std::list<int> v2(3);
29 v1.splice(v1.begin(), v2, v1.begin());
  /external/libcxx/test/std/numerics/numarray/template.valarray/valarray.members/
apply_cref.pass.cpp 30 std::valarray<T> v2 = v1.apply(f); local
31 assert(v2.size() == N1);
33 assert(v2[i] == a2[i]);
38 std::valarray<T> v2 = v1.apply(f); local
39 assert(v2.size() == N1);
46 std::valarray<T> v2 = (v1+v1).apply(f); local
47 assert(v2.size() == N1);
49 assert(v2[i] == a2[i]);
apply_value.pass.cpp 30 std::valarray<T> v2 = v1.apply(f); local
31 assert(v2.size() == N1);
33 assert(v2[i] == a2[i]);
38 std::valarray<T> v2 = v1.apply(f); local
39 assert(v2.size() == N1);
46 std::valarray<T> v2 = (v1+v1).apply(f); local
47 assert(v2.size() == N1);
49 assert(v2[i] == a2[i]);
  /external/llvm/test/MC/AArch64/
neon-2velem.s 9 mla v0.2s, v1.2s, v2.s[2]
11 mla v3.4s, v8.4s, v2.s[1]
14 // CHECK: mla v0.2s, v1.2s, v2.s[2] // encoding: [0x20,0x08,0x82,0x2f]
16 // CHECK: mla v3.4s, v8.4s, v2.s[1] // encoding: [0x03,0x01,0xa2,0x6f]
19 mla v0.4h, v1.4h, v2.h[2]
21 mla v0.8h, v1.8h, v2.h[7]
24 // CHECK: mla v0.4h, v1.4h, v2.h[2] // encoding: [0x20,0x00,0x62,0x2f]
26 // CHECK: mla v0.8h, v1.8h, v2.h[7] // encoding: [0x20,0x08,0x72,0x6f]
29 mls v0.2s, v1.2s, v2.s[2]
31 mls v3.4s, v8.4s, v2.s[1
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_triangle.h 38 const SWvertex *v2);
47 const SWvertex *v2 );
  /external/webrtc/webrtc/base/
checks.h 102 std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) {
104 ss << names << " (" << v1 << " vs. " << v2 << ")"; local
135 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
137 if (v1 op v2) \
140 return rtc::MakeCheckOpString(v1, v2, names); \
142 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
143 if (v1 op v2) \
146 return rtc::MakeCheckOpString(v1, v2, names); \
169 #define RTC_DCHECK_EQ(v1, v2) RTC_CHECK_EQ(v1, v2)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
Request.java 17 package com.android.camera.one.v2.core;
21 import com.android.camera.one.v2.camera2proxy.CaptureRequestBuilderProxy;
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/metadatasynchronizer/
MetadataPool.java 17 package com.android.camera.one.v2.sharedimagereader.metadatasynchronizer;
19 import com.android.camera.one.v2.camera2proxy.TotalCaptureResultProxy;
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/util/
ImageCloser.java 17 package com.android.camera.one.v2.sharedimagereader.util;
20 import com.android.camera.one.v2.camera2proxy.ImageProxy;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/sequences/list/list.modifiers/
insert_iter_rvalue_db1.pass.cpp 27 std::list<int> v2(3);
28 v1.insert(v2.begin(), 4);
insert_iter_value_db1.pass.cpp 28 std::list<int> v2(3);
30 v1.insert(v2.begin(), i);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/sequences/list/list.ops/
db_splice_pos_list_iter.pass.cpp 28 std::list<int> v2(3);
29 v1.splice(v1.begin(), v2, v1.begin());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.valarray/valarray.members/
apply_cref.pass.cpp 30 std::valarray<T> v2 = v1.apply(f); local
31 assert(v2.size() == N1);
33 assert(v2[i] == a2[i]);
38 std::valarray<T> v2 = v1.apply(f); local
39 assert(v2.size() == N1);
46 std::valarray<T> v2 = (v1+v1).apply(f); local
47 assert(v2.size() == N1);
49 assert(v2[i] == a2[i]);

Completed in 613 milliseconds

<<11121314151617181920>>