HomeSort by relevance Sort by last modified time
    Searched defs:v1 (Results 26 - 50 of 333) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/template.bitset/bitset.members/
right_shift_eq.pass.cpp 33 std::bitset<N> v1 = make_bitset<N>(); local
34 std::bitset<N> v2 = v1;
35 v1 >>= s;
38 assert(v1[i] == v2[i + s]);
40 assert(v1[i] == 0);
test.pass.cpp 31 const std::bitset<N> v1 = make_bitset<N>(); local
34 bool b = v1.test(50);
35 if (50 >= v1.size())
37 assert(b == v1[50]);
index.pass.cpp 31 std::bitset<N> v1 = make_bitset<N>(); local
34 assert(v1[N/2] == v1.test(N/2));
35 typename std::bitset<N>::reference r = v1[N/2];
36 assert(r == v1.test(N/2));
37 typename std::bitset<N>::reference r2 = v1[N/2];
39 assert(r == v1.test(N/2));
42 assert(v1.test(N/2) == false);
45 assert(v1.test(N/2) == true);
48 assert(v1.test(N/2) == true)
    [all...]
  /external/libcxx/test/utilities/template.bitset/bitset.operators/
op_and.pass.cpp 31 std::bitset<N> v1 = make_bitset<N>(); local
33 std::bitset<N> v3 = v1;
34 assert((v1 & v2) == (v3 &= v2));;
op_not.pass.cpp 31 std::bitset<N> v1 = make_bitset<N>(); local
33 std::bitset<N> v3 = v1;
34 assert((v1 ^ v2) == (v3 ^= v2));;
op_or.pass.cpp 31 std::bitset<N> v1 = make_bitset<N>(); local
33 std::bitset<N> v3 = v1;
34 assert((v1 | v2) == (v3 |= v2));;
  /external/mdnsresponder/Clients/
ClientCommon.c 58 int v1 = cstr[ 0] - '0'; local
60 int val = v0 * 100 + v1 * 10 + v2;
  /external/nanopb-c/examples/using_double_on_avr/
decode_double.c 19 float v1 = double_to_float(message.field1); local
22 printf("Values: %f %f\n", v1, v2);
24 if (v1 == 1234.5678f &&
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
VerbosityTest.java 29 String v1 = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0] + " 500"); local
30 assertTrue(v1.contains("Events injected"));
31 assertTrue(v1.contains("Sending Touch"));
32 assertTrue(v1.contains("Sending Trackball"));
33 assertTrue(v1.contains("Switch"));
34 assertFalse(v1.contains("Sleeping"));
43 assertTrue(v0.length() < v1.length());
44 assertTrue(v1.length() < v2.length());
  /external/chromium_org/chrome/installer/util/
compat_checks.cc 29 bool ParseSEPVersion(const std::wstring& version, int* v0, int* v1, int* v2) {
36 if (!base::StringToInt(v[1], v1))
44 bool IsBadSEPVersion(int v0, int v1, int v2) {
47 if (v1 > 0)
57 int v0, v1, v2; local
59 if (!ParseSEPVersion(ver_str, &v0, &v1, &v2))
61 return IsBadSEPVersion(v0, v1, v2);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsTriangle.cpp 15 SkDVector v1 = fPts[1] - fPts[0]; local
20 double dot01 = v0.dot(v1);
22 double dot11 = v1.dot(v1);
23 double dot12 = v1.dot(v2);
  /external/chromium_org/third_party/skia/tests/
PathOpsDVectorTest.cpp 25 SkDVector v1 = tests[index + 1] - tests[index]; local
26 SkASSERT(ValidVector(v1));
29 v1 += v2;
30 REPORTER_ASSERT(reporter, v1.fX == 0 && v1.fY == 0);
35 v1 = tests[index + 1] - tests[index];
36 v1 /= 2;
37 v1 *= 2;
38 v1 -= tests[index + 1] - tests[index];
39 REPORTER_ASSERT(reporter, v1.fX == 0 && v1.fY == 0)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
differ_block_sse2.cc 29 __m128i v1; local
35 v1 = _mm_loadu_si128(i2);
36 sad = _mm_sad_epu8(v0, v1);
39 v1 = _mm_loadu_si128(i2 + 1);
40 sad = _mm_sad_epu8(v0, v1);
43 v1 = _mm_loadu_si128(i2 + 2);
44 sad = _mm_sad_epu8(v0, v1);
47 v1 = _mm_loadu_si128(i2 + 3);
48 sad = _mm_sad_epu8(v0, v1);
69 __m128i v1; local
    [all...]
  /external/chromium_org/ui/views/
view_model_unittest.cc 40 View v1; local
42 model.Add(&v1, 0);
44 EXPECT_EQ(&v1, model.view_at(0));
48 EXPECT_EQ(0, model.GetIndexOfView(&v1));
52 View v1, v2, v3; local
53 v1.set_id(0);
57 model.Add(&v1, 0);
68 View v1, v2, v3; local
69 v1.set_id(0);
73 model.Add(&v1, 0)
    [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 8 int32x2x3_t v1; local
16 v1 = vld3_dup_s32(v0);
  /external/clang/test/SemaCXX/
attr-cleanup-gcc.cpp 13 int v1 __attribute__((cleanup(N::c1))); // expected-warning {{GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier}} local
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.members/
apply_cref.pass.cpp 29 std::valarray<T> v1(a1, N1);
30 std::valarray<T> v2 = v1.apply(f);
37 std::valarray<T> v1; local
38 std::valarray<T> v2 = v1.apply(f);
45 std::valarray<T> v1(a1, N1);
46 std::valarray<T> v2 = (v1+v1).apply(f);
apply_value.pass.cpp 29 std::valarray<T> v1(a1, N1);
30 std::valarray<T> v2 = v1.apply(f);
37 std::valarray<T> v1; local
38 std::valarray<T> v2 = v1.apply(f);
45 std::valarray<T> v1(a1, N1);
46 std::valarray<T> v2 = (v1+v1).apply(f);
swap.pass.cpp 27 std::valarray<T> v1(a1, N1);
29 std::valarray<T> v1_save = v1;
31 v1.swap(v2);
32 assert(v1.size() == v2_save.size());
33 for (int i = 0; i < v1.size(); ++i)
34 assert(v1[i] == v2_save[i]);
44 std::valarray<T> v1(a1, N1);
46 std::valarray<T> v1_save = v1;
48 v1.swap(v2);
49 assert(v1.size() == v2_save.size())
61 std::valarray<T> v1; local
77 std::valarray<T> v1; local
    [all...]
  /external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.special/
swap.pass.cpp 29 std::valarray<T> v1(a1, N1);
31 std::valarray<T> v1_save = v1;
33 swap(v1, v2);
34 assert(v1.size() == v2_save.size());
35 for (int i = 0; i < v1.size(); ++i)
36 assert(v1[i] == v2_save[i]);
46 std::valarray<T> v1(a1, N1);
48 std::valarray<T> v1_save = v1;
50 swap(v1, v2);
51 assert(v1.size() == v2_save.size())
63 std::valarray<T> v1; local
79 std::valarray<T> v1; local
    [all...]
  /external/openssl/crypto/bf/
bf_cfb64.c 70 register BF_LONG v0,v1,t; local
84 n2l(iv,v1); ti[1]=v1;
104 n2l(iv,v1); ti[1]=v1;
118 v0=v1=ti[0]=ti[1]=t=c=cc=0;
  /external/openssl/crypto/des/
cfb64enc.c 70 register DES_LONG v0,v1; local
84 c2l(iv,v1); ti[1]=v1;
104 c2l(iv,v1); ti[1]=v1;
118 v0=v1=ti[0]=ti[1]=c=cc=0;
  /external/openssl/crypto/rc2/
rc2cfb64.c 71 register unsigned long v0,v1,t; local
85 c2l(iv,v1); ti[1]=v1;
105 c2l(iv,v1); ti[1]=v1;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
  /cts/tests/tests/view/src/android/view/cts/
View_FocusHandlingTest.java 38 View v1 = activity.findViewById(R.id.view1); local
43 assertNotNull(v1);
49 assertFalse(v1.isFocusable());
54 v1.setFocusable(true);
59 assertTrue(v1.isFocusable());
64 v1.setNextFocusRightId(R.id.view2);
65 v1.setNextFocusDownId(R.id.view3);
77 assertEquals(R.id.view2, v1.getNextFocusRightId());
78 assertEquals(R.id.view3, v1.getNextFocusDownId());
90 assertSame(v2, v1.focusSearch(View.FOCUS_RIGHT))
    [all...]

Completed in 815 milliseconds

12 3 4 5 6 7 8 91011>>