/external/clang/test/Parser/ |
pragma-visibility2.c | 18 int v3; variable 19 // CHECK: @v3 = common hidden global i32 0, align 4
|
/external/clang/test/CodeGen/ |
cxx-value-init.cpp | 8 int v3 = int(); local
|
mmx-inline-asm.c | 9 __m64 v1, v2, v3, v4, v5, v6, v7; local 19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
|
arm-aapcs-vfp.c | 75 int32x2_t v3; member in struct:neon_struct
|
/cts/tests/tests/view/src/android/view/cts/ |
View_FocusHandlingTest.java | 147 View v3 = activity.findViewById(R.id.view3); local 152 assertNotNull(v3); 158 assertFalse(v3.isFocusable()); 163 v3.setFocusable(true); 168 assertTrue(v3.isFocusable()); 177 v3.setNextFocusRightId(R.id.view4); 178 v3.setNextFocusUpId(R.id.view1); 190 assertEquals(R.id.view1, v3.getNextFocusUpId()); 191 assertEquals(R.id.view4, v3.getNextFocusRightId()); 198 assertSame(v3, v1.focusSearch(View.FOCUS_DOWN)) [all...] |
/external/clang/test/Sema/ |
vector-assign.c | 11 v1s v3; local 16 v1 = v3; // expected-error {{assigning to 'v2s' from incompatible type 'v1s'}} 21 v2 = v3; // expected-error {{assigning to 'v2u' from incompatible type 'v1s'}} 25 v3 = v1; // expected-error {{assigning to 'v1s' from incompatible type 'v2s'}} 26 v3 = v2; // expected-error {{assigning to 'v1s' from incompatible type 'v2u'}} 27 v3 = v4; // expected-error {{assigning to 'v1s' from incompatible type 'v2f'}} 28 v3 = v5; // expected-error {{assigning to 'v1s' from incompatible type 'v4ss'}} 32 v4 = v3; // expected-error {{assigning to 'v2f' from incompatible type 'v1s'}} 37 v5 = v3; // expected-error {{assigning to 'v4ss' from incompatible type 'v1s'}}
|
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
|
offsetof.c | 37 int v3 = __builtin_offsetof(struct s3, a) == 0 ? 0 : f(); variable
|
/external/clang/test/SemaCXX/ |
type-convert-construct.cpp | 7 int v3 = arr(); // expected-error {{array types cannot be value-initialized}} local
|
qualified-id-lookup.cpp | 72 int v3 = ::i1; local
|
/external/clang/test/SemaTemplate/ |
instantiate-deeply.cpp | 11 b v3 = 8; local 12 a v4 = v3 * v3;
|
/external/dropbear/libtommath/ |
bn_mp_exteuclid.c | 23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local 26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) { 34 /* initialize, (v1,v2,v3) = (0,1,b) */ 36 if ((err = mp_copy(b, &v3)) != MP_OKAY) { goto _ERR; } 38 /* loop while v3 != 0 */ 39 while (mp_iszero(&v3) == MP_NO) { 40 /* q = u3/v3 */ 41 if ((err = mp_div(&u3, &v3, &q, NULL)) != MP_OKAY) { goto _ERR; } 43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */ 48 if ((err = mp_mul(&v3, &q, &tmp)) != MP_OKAY) { goto _ERR; [all...] |
/external/stlport/test/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);
|
/external/valgrind/main/none/tests/x86-linux/ |
sigcontext.c | 47 int v2, v3, v4; local 67 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4) 69 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4); 82 : "=a" (ret), "=d" (v2), "=S" (v3), "=D" (v4) 84 printf("v2=%x v3=%x v4=%x\n", v2, v3, v4);
|
/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);
|
/external/webkit/LayoutTests/fast/js/resources/ |
codegen-temporaries-multiple-global-blocks-1.js | 15 v3 = { a: 0 };
|
codegen-temporaries-multiple-global-blocks-2.js | 15 var v3 = o3; variable 16 v3.a += assign3();
|
/dalvik/dx/tests/120-disable-extended-ops/ |
Blort.java | 34 int v3 = field3; local 55 sink(v3);
|
/external/chromium/testing/gmock/test/ |
gmock-internal-utils_test.cc | 594 Chars v3 = StlContainerView<Chars>::Copy(v1); local 595 EXPECT_THAT(v3, Eq(v3));
|
/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
|
/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 | 130 final View v3 = mActivity.findViewById(R.id.label); local 136 parent.removeView(v3); 142 mViewAnimator.addView(v3); 302 final View v3 = mActivity.findViewById(R.id.label); local 308 parent.removeView(v3); 314 mViewAnimator.addView(v3); 466 final View v3 = mActivity.findViewById(R.id.label); local 472 parent.removeView(v3); 478 mViewAnimator.addView(v3); 486 assertSame(v3, mViewAnimator.getChildAt(2)) [all...] |