Searched refs:v3 (Results 1 - 25 of 444) sorted by relevance

1234567891011>>

/external/llvm/test/MC/R600/
H A Dvop2.s11 // CHECK: v_add_f32_e32 v1, v2, v3 ; encoding: [0x02,0x07,0x02,0x06]
12 v_add_f32_e32 v1, v2, v3
15 // CHECK: v_add_f32_e32 v1, 1.0, v3 ; encoding: [0xf2,0x06,0x02,0x06]
16 v_add_f32 v1, 1.0, v3
19 // CHECK: v_add_f32_e32 v1, -1.0, v3 ; encoding: [0xf3,0x06,0x02,0x06]
20 v_add_f32 v1, -1.0, v3
23 // CHECK: v_add_f32_e32 v1, 0x42c80000, v3 ; encoding: [0xff,0x06,0x02,0x06,0x00,0x00,0xc8,0x42]
24 v_add_f32 v1, 100.0, v3
27 // CHECK: v_add_f32_e32 v1, 0xc2c80000, v3 ; encoding: [0xff,0x06,0x02,0x06,0x00,0x00,0xc8,0xc2]
28 v_add_f32 v1, -100.0, v3
[all...]
/external/valgrind/none/tests/s390x/
H A Dbfp-3.c6 void maebr(float v1, float v2, float v3) argument
11 : [r1]"+f"(r1) : [r2]"f"(v2), [r3]"f"(v3));
12 printf("maebr %f * %f + %f -> %f\n", v2, v3, v1, r1);
15 void madbr(double v1, double v2, double v3) argument
20 : [r1]"+f"(r1) : [r2]"f"(v2), [r3]"f"(v3));
21 printf("madbr %f * %f + %f -> %f\n", v2, v3, v1, r1);
24 void msebr(float v1, float v2, float v3) argument
29 : [r1]"+f"(r1) : [r2]"f"(v2), [r3]"f"(v3));
30 printf("msebr %f * %f - %f -> %f\n", v2, v3, v1, r1);
33 void msdbr(double v1, double v2, double v3) argument
[all...]
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.comparison/
H A Dand_value_valarray.pass.cpp29 std::valarray<bool> v3 = 5 && v2; local
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
40 std::valarray<bool> v3 = 0 && v2; local
41 assert(v2.size() == v3.size());
42 for (int i = 0; i < v3.size(); ++i)
43 assert(v3[i] == a3[i]);
H A Dor_value_valarray.pass.cpp29 std::valarray<bool> v3 = 5 || v2; local
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
40 std::valarray<bool> v3 = 0 || v2; local
41 assert(v2.size() == v3.size());
42 for (int i = 0; i < v3.size(); ++i)
43 assert(v3[i] == a3[i]);
H A Dequal_value_valarray.pass.cpp29 std::valarray<bool> v3 = 2 == v2; local
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
H A Dgreater_equal_value_valarray.pass.cpp29 std::valarray<bool> v3 = 2 >= v2; local
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
H A Dgreater_value_valarray.pass.cpp29 std::valarray<bool> v3 = 2 > v2; local
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
H A Dless_equal_value_valarray.pass.cpp29 std::valarray<bool> v3 = 2 <= v2; local
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
H A Dless_value_valarray.pass.cpp29 std::valarray<bool> v3 = 2 < v2;
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
H A Dnot_equal_value_valarray.pass.cpp29 std::valarray<bool> v3 = 2 != v2; local
30 assert(v2.size() == v3.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
H A Dand_valarray_value.pass.cpp29 std::valarray<bool> v3 = v1 && 5; local
30 assert(v1.size() == v3.size());
32 assert(v3[i] == a3[i]);
40 std::valarray<bool> v3 = v1 && 0; local
41 assert(v1.size() == v3.size());
43 assert(v3[i] == a3[i]);
H A Dor_valarray_value.pass.cpp29 std::valarray<bool> v3 = v1 || 5; local
30 assert(v1.size() == v3.size());
32 assert(v3[i] == a3[i]);
40 std::valarray<bool> v3 = v1 || 0; local
41 assert(v1.size() == v3.size());
43 assert(v3[i] == a3[i]);
H A Dequal_valarray_value.pass.cpp29 std::valarray<bool> v3 = v1 == 2; local
30 assert(v1.size() == v3.size());
32 assert(v3[i] == a3[i]);
H A Dgreater_equal_valarray_value.pass.cpp29 std::valarray<bool> v3 = v1 >= 2; local
30 assert(v1.size() == v3.size());
32 assert(v3[i] == a3[i]);
/external/clang/test/CodeGen/
H A Dcxx-value-init.cpp8 int v3 = int(); local
/external/clang/test/Modules/Inputs/
H A Dlinkage-merge-sub.h9 static int v3; variable
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
H A Dabs_valarray.pass.cpp29 std::valarray<T> v3 = abs(v1); local
30 assert(v3.size() == v1.size());
31 for (int i = 0; i < v3.size(); ++i)
32 assert(v3[i] == a3[i]);
/external/strace/tests/
H A Dcaps.c11 const int v3 = 0x20080522; local
12 int head[] = { v3, 0 };
14 if (capget(head, unused) || head[0] != v3 ||
/external/llvm/test/MC/AArch64/
H A Darm64-vector-lists.s4 ST4 {v0.8B-v3.8B}, [x0]
5 ST4 {v0.4H-v3.4H}, [x0]
7 // CHECK: st4 { v0.8b, v1.8b, v2.8b, v3.8b }, [x0] // encoding: [0x00,0x00,0x00,0x0c]
8 // CHECK: st4 { v0.4h, v1.4h, v2.4h, v3.4h }, [x0] // encoding: [0x00,0x04,0x00,0x0c]
11 ST4 {v0.8B-v3.8B,v4.8B}, [x0]
12 ST4 {v0.8B-v3.8H}, [x0]
13 ST4 {v0.8B-v3.16B}, [x0]
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest_pred_impl.h185 const T3& v3) {
186 if (pred(v1, v2, v3)) return AssertionSuccess();
194 << "\n" << e3 << " evaluates to " << v3;
199 #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
200 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \
205 #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
209 #v3, \
213 v3), on_failure)
216 #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/gtest/include/gtest/
H A Dgtest_pred_impl.h185 const T3& v3) {
186 if (pred(v1, v2, v3)) return AssertionSuccess();
194 << "\n" << e3 << " evaluates to " << v3;
199 #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
200 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3), \
205 #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
209 #v3, \
213 v3), on_failure)
216 #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest_pred_impl.h185 const T3& v3) {
186 if (pred(v1, v2, v3)) return AssertionSuccess();
194 << "\n" << e3 << " evaluates to " << v3;
199 #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
200 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\
205 #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
209 #v3, \
213 v3), on_failure)
216 #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest_pred_impl.h185 const T3& v3) {
186 if (pred(v1, v2, v3)) return AssertionSuccess();
194 << "\n" << e3 << " evaluates to " << v3;
199 #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
200 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\
205 #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
209 #v3, \
213 v3), on_failure)
216 #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
178 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
234 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
297 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/protobuf/gtest/include/gtest/
H A Dgtest_pred_impl.h189 const T3& v3) {
190 if (pred(v1, v2, v3)) return AssertionSuccess();
199 << "\n" << e3 << " evaluates to " << v3; local
205 #define GTEST_PRED_FORMAT3_(pred_format, v1, v2, v3, on_failure)\
206 GTEST_ASSERT_(pred_format(#v1, #v2, #v3, v1, v2, v3),\
211 #define GTEST_PRED3_(pred, v1, v2, v3, on_failure)\
215 #v3, \
219 v3), on_failure)
222 #define EXPECT_PRED_FORMAT3(pred_format, v1, v2, v3) \
182 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) argument
240 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) argument
305 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DBIHTriangle.java77 float v1, v2, v3;
79 case 0: v1 = pointa.x; v2 = pointb.x; v3 = pointc.x; break;
80 case 1: v1 = pointa.y; v2 = pointb.y; v3 = pointc.y; break;
81 case 2: v1 = pointa.z; v2 = pointb.z; v3 = pointc.z; break;
86 if (v1 < v3)
89 return v3;
91 if (v2 < v3)
94 return v3;
98 if (v1 > v3)
101 return v3;
[all...]

Completed in 2418 milliseconds

1234567891011>>