/external/llvm/test/CodeGen/CellSPU/useful-harnesses/ |
vecoperations.c | 147 v2i64 v3 = { 691043ll, 910301513ll }; local 171 print_v2i64("v3 ", v3); 172 print_v2i64("v2i64_shuffle ", v2i64_shuffle(v3));
|
/external/mesa3d/src/pixelflinger2/ |
raster.cpp | 337 const VertexOutput * v2, const VertexOutput * v3) 342 const VertexOutput * a = v1, * b = v2, * d = v3; 351 if (v3->position.y < a->position.y) { 354 a = v3; 355 } else if (v3->position.y < b->position.y) { 357 b = v3; 391 VertexOutput * v1 = vouts + 0, * v2 = vouts + 1, * v3 = vouts + 2; local 434 iface->ProcessVertex(iface, vin3, v3); 460 // GGLProcessVertex(program, vin3, v3, (const float (*)[4])matrix); 465 // v3->position.x, v3->position.y, v3->position.z, v3->position.w) [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
ViewAnimatorTest.java | 91 final View v3 = mActivity.findViewById(R.id.label); local 97 parent.removeView(v3); 103 mViewAnimator.addView(v3); 224 final View v3 = mActivity.findViewById(R.id.label); local 230 parent.removeView(v3); 236 mViewAnimator.addView(v3); 322 final View v3 = mActivity.findViewById(R.id.label); local 328 parent.removeView(v3); 334 mViewAnimator.addView(v3); 342 assertSame(v3, mViewAnimator.getChildAt(2)) [all...] |
/external/chromium/sdch/open-vcdiff/src/gtest/ |
gtest_pred_impl.h | 189 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) \ [all...] |
/external/clang/test/SemaCXX/ |
constant-expression.cpp | 24 v3 = cval, enumerator in enum:C::E
|
enum.cpp | 54 enum enum3 { v3 = __LONG_MAX__ }; enumerator in enum:test1::enum3 55 int test3[is_same<__typeof(+v3), long>::value];
|
qualified-id-lookup.cpp | 72 int v3 = ::i1; local
|
enum-scoped.cpp | 19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}} member in struct:E1::E2
|
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
Intersection.java | 67 // Vector3f v1, Vector3f v2, Vector3f v3){ 81 public static boolean intersect(BoundingBox bbox, Vector3f v1, Vector3f v2, Vector3f v3) { 111 v3.subtract(center, tmp2); 272 p.setPlanePoints(v1, v2, v3);
|
/external/jmonkeyengine/engine/src/core/com/jme3/material/ |
MatParam.java | 189 Vector3f v3 = (Vector3f) value; local 190 return v3.getX() + " " + v3.getY() + " " + v3.getZ();
|
/external/libvpx/vpx_scale/generic/ |
bicubic_scaler.c | 72 unsigned short v1, v2, v3; local 87 v3 = three - (2 * (a_i >> 3)); 88 v3 = (v3 * t) >> 16; 89 v3 = (v3 * t) >> 16; 92 return (((v1 >> 3) - v2 + v3) >> 1); 101 unsigned short v1, v2, v3; local 115 v3 = two - (a_i >> 3); 116 v3 = (v3 * t) >> 16 129 int v1, v2, v3; local [all...] |
/external/openssl/ssl/ |
ssl_asn1.c | 125 int v1=0,v2=0,v3=0,v4=0,v5=0,v7=0,v8=0; local 301 M_ASN1_I2D_len_EXP_opt(in->peer,i2d_X509,3,v3); 347 M_ASN1_I2D_put_EXP_opt(in->peer,i2d_X509,3,v3);
|
/external/protobuf/gtest/include/gtest/ |
gtest_pred_impl.h | 189 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) \ [all...] |
/external/stlport/test/unit/ |
vector_test.cpp | 339 vector<int *> v3; local 341 v3.insert( v3.end(), v1.begin(), v1.end() );
|
/ndk/tests/device/test-gnustl-full/unit/ |
vector_test.cpp | 339 vector<int *> v3; local 341 v3.insert( v3.end(), v1.begin(), v1.end() );
|
/ndk/tests/device/test-stlport/unit/ |
vector_test.cpp | 339 vector<int *> v3; local 341 v3.insert( v3.end(), v1.begin(), v1.end() );
|
/external/protobuf/gtest/test/ |
gtest_pred_impl_unittest.cc | 895 bool PredFunction3(T1 v1, T2 v2, T3 v3) { 896 return v1 + v2 + v3 > 0; 902 bool PredFunction3Int(int v1, int v2, int v3) { 903 return v1 + v2 + v3 > 0; 905 bool PredFunction3Bool(Bool v1, Bool v2, Bool v3) { 906 return v1 + v2 + v3 > 0; 914 const T3& v3) { 915 return v1 + v2 + v3 > 0; 926 const T3& v3) { 927 if (PredFunction3(v1, v2, v3)) 933 << v1 + v2 + v3 << "."; local [all...] |
/external/tcpdump/ |
print-nfs.c | 93 * NFS V2 and V3 status values. 95 * Some of these come from the RFCs for NFS V2 and V3, with the message 424 parsefh(register const u_int32_t *dp, int v3) 428 if (v3) { 483 parsefhn(register const u_int32_t *dp, int v3) 485 dp = parsefh(dp, v3); 499 int v3; local 520 v3 = (EXTRACT_32BITS(&rp->rm_call.cb_vers) == NFS_VER3); 523 if (!v3 && proc < NFS_NPROCS) 537 parsefh(dp, v3) != NULL 1491 register int v3; local [all...] |
/bionic/libm/src/ |
e_lgamma_r.c | 133 v3 = 7.69285150456672783825e-01, /* 0x3FE89DFB, 0xE45050AF */ variable 265 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
|
e_lgammaf_r.c | 67 v3 = 7.6928514242e-01, /* 0x3f44efdf */ variable 199 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
|
/external/clang/test/Parser/ |
altivec.c | 118 vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd')); variable
|
cxx-altivec.cpp | 125 vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd')); variable
|
/external/fdlibm/ |
e_lgamma_r.c | 132 v3 = 7.69285150456672783825e-01, /* 0x3FE89DFB, 0xE45050AF */ variable 272 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
SweepSphere.java | 293 Vector3f v3 = scaledTri.get3(); local 313 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v3, minT); 316 contactPoint.set(v3); 328 newT = collideWithSegment(sCenter, sVelocity, velocitySquared, v2, v3, minT, contactPoint); 335 newT = collideWithSegment(sCenter, sVelocity, velocitySquared, v3, v1, minT, contactPoint);
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/ |
BIHNode.java | 248 v3 = vars.vect3; local 273 tree.getTriangle(i, v1, v2, v3); 278 worldMatrix.mult(v3, v3); 281 float t = r.intersects(v1, v2, v3); 332 v3 = vars.vect5; local 400 tree.getTriangle(i, v1, v2, v3); 402 float t = r.intersects(v1, v2, v3); 407 worldMatrix.mult(v3, v3); [all...] |