/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/ |
log_valarray.pass.cpp | 46 std::valarray<T> v3 = log(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
pow_valarray_valarray.pass.cpp | 48 std::valarray<T> v3 = pow(v1, v2); local 49 assert(v3.size() == v1.size()); 50 for (int i = 0; i < v3.size(); ++i) 51 assert(is_about(v3[i], a3[i], 10));
|
pow_valarray_value.pass.cpp | 46 std::valarray<T> v3 = pow(v1, 2.0); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
pow_value_valarray.pass.cpp | 46 std::valarray<T> v3 = pow(2.0, v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
sin_valarray.pass.cpp | 46 std::valarray<T> v3 = sin(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
sinh_valarray.pass.cpp | 46 std::valarray<T> v3 = sinh(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
sqrt_valarray.pass.cpp | 46 std::valarray<T> v3 = sqrt(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
tan_valarray.pass.cpp | 46 std::valarray<T> v3 = tan(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
tanh_valarray.pass.cpp | 46 std::valarray<T> v3 = tanh(v1); local 47 assert(v3.size() == v1.size()); 48 for (int i = 0; i < v3.size(); ++i) 49 assert(is_about(v3[i], a3[i], 10));
|
/ndk/tests/device/test-gnustl-full/unit/ |
search_test.cpp | 43 int v3[2] = { 3, 4 }; local 46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2); 49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2);
|
/ndk/tests/device/test-stlport/unit/ |
search_test.cpp | 43 int v3[2] = { 3, 4 }; local 46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2); 49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2);
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
LittleEndian.java | 66 final long v3 = src[offset + 3] & 0xFF; local 67 return ((v3 << 24) | (v2 << 16) | (v1 << 8) | v0);
|
/external/clang/test/CodeGen/ |
xcore-abi.c | 52 int v3 = va_arg (ap, int); local 53 f(&v3); 99 // CHECK: [[V3:%[a-z0-9]+]] = load i32*, i32** [[V]], align 4 100 // CHECK: [[V4:%[a-z0-9]+]] = bitcast i32* [[V3]] to i8*
|
vectorcall.c | 13 void __vectorcall v3(int a, struct Small b, int c) {} function 14 // CHECK: define x86_vectorcallcc void @"\01v3@@12"(i32 inreg %a, %struct.Small* byval align 4 %b, i32 inreg %c) 15 // X64: define x86_vectorcallcc void @"\01v3@@24"(i32 %a, i32 %b.coerce, i32 %c)
|
/external/clang/test/Sema/ |
vector-cast.c | 11 t3 v3; local 17 v3 = (t3)v2;
|
declspec.c | 23 __restrict__ fptr v3; // expected-error {{pointer to function type 'f' (aka 'int (void)') may not be 'restrict' qualified}} variable
|
/external/eigen/test/eigen2/ |
eigen2_adjoint.cpp | 35 v3 = VectorType::Random(rows), local 51 VERIFY(ei_isApprox((s1 * v1 + s2 * v2).eigen2_dot(v3), s1 * v1.eigen2_dot(v3) + s2 * v2.eigen2_dot(v3), largerEps)); 52 VERIFY(ei_isApprox(v3.eigen2_dot(s1 * v1 + s2 * v2), ei_conj(s1)*v3.eigen2_dot(v1)+ei_conj(s2)*v3.eigen2_dot(v2), largerEps));
|
/external/fio/crc/ |
xxhash.h | 74 uint32_t v3; member in struct:XXH_state32_t
|
/external/eigen/test/ |
adjoint.cpp | 18 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { 19 VERIFY(test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2) * v2.dot(v3), 0)); 20 VERIFY(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), 0)); 29 static void run(const Vec& v1, const Vec& v2, Vec& v3, const Mat& square, Scalar s1, Scalar s2) { 33 RealScalar ref = NumTraits<Scalar>::IsInteger ? RealScalar(0) : (std::max)((s1 * v1 + s2 * v2).norm(),v3.norm()); 34 VERIFY(test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2) * v2.dot(v3), ref)) 77 v3 = VectorType::Random(rows), local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/ |
BIHTriangle.java | 77 float v1, v2, v3; local 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...] |
/external/libunwind/tests/ |
Gia64-test-stack.c | 58 unw_word_t ip, sp, bsp, v0, v1, v2, v3, n0, n1, n2, n3, cfm, sof, sol, r32; local 82 v0 = v1 = v2 = v3 = 0; 91 || (ret = unw_get_reg (&c, UNW_IA64_GR + reg + 3, &v3)) < 0 99 n2 ? '*' : ' ', v2, n3 ? '*' : ' ', v3);
|
ppc64-test-altivec.c | 33 register vector signed int v3; local 123 v3 = vec_init (); 130 vec_nor (v1, vec_add (v2, vec_sub (v3, vec_and (v4, vec_or (v5, v6))))); 145 vec_sub (v3, 154 printf ("v3 - "); 155 vec_print (v3);
|
/external/skia/src/sfnt/ |
SkOTTable_OS_2.h | 36 struct V3 : SkOTTableOS2_V3 { } v3; member in union:SkOTTableOS2::Version 49 SK_COMPILE_ASSERT(sizeof(SkOTTableOS2::Version::V3) == 96, sizeof_SkOTTableOS2__V3_not_96);
|
/system/core/libmemtrack/ |
memtrack_test.c | 115 size_t v3; local 131 v3 = DIV_ROUND_UP(memtrack_proc_gl_total(p), 1024); 136 if (v1 | v2 | v3 | v4 | v5 | v6) { 138 v1, v2, v3, v4, v5, v6, cmdline);
|
/external/clang/test/CXX/class/class.mem/ |
p1.cpp | 32 static int v3; member in struct:S3 35 static int v3; member in struct:S3::S4
|