HomeSort by relevance Sort by last modified time
    Searched refs:v2 (Results 101 - 125 of 1540) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.comparison/
less_equal_value_valarray.pass.cpp 28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 <= v2;
30 assert(v2.size() == v3.size());
less_value_valarray.pass.cpp 28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 < v2;
30 assert(v2.size() == v3.size());
not_equal_value_valarray.pass.cpp 28 std::valarray<T> v2(a2, N);
29 std::valarray<bool> v3 = 2 != v2;
30 assert(v2.size() == v3.size());
  /external/nanopb-c/examples/using_double_on_avr/
decode_double.c 20 float v2 = double_to_float(message.field2); local
22 printf("Values: %f %f\n", v1, v2);
25 v2 == 0.00001f)
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_feedback.h 37 const SWvertex *v1, const SWvertex *v2 );
40 const SWvertex *v1, const SWvertex *v2 );
45 const SWvertex *v1, const SWvertex *v2 );
48 const SWvertex *v1, const SWvertex *v2 );
s_triangle.h 38 const SWvertex *v2);
47 const SWvertex *v2 );
  /external/chromium_org/ui/v2/public/
painter.h 8 #include "ui/v2/public/v2_export.h"
14 namespace v2 { namespace
23 } // namespace v2
  /external/clang/test/CodeGen/
cxx-value-init.cpp 5 float v2 = float(); variable
mmx-inline-asm.c 9 __m64 v1, v2, v3, v4, v5, v6, v7; local
19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
vld_dup.c 9 int32_t v2[4]; local
28 v3 = vld4_dup_s32(v2);
  /external/clang/test/Parser/
pragma-visibility2.c 13 int v2; variable
14 // CHECK: @v2 = common global i32 0, align 4
  /external/clang/test/Sema/
vector-assign.c 10 v2u v2; local
15 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from 'v2u' (vector of 2 'unsigned int' values)}}
20 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v2s' (vector of 2 'int' values)}}
21 v2 = v3; // expected-error {{assigning to 'v2u' (vector of 2 'unsigned int' values) from incompatible type 'v1s' (vector of 1 'int' value)}}
22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v2f' (vector of 2 'float' values)}}
23 v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned int' values) from 'v4ss' (vector of 4 'short' values)}}
26 v3 = v2; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2u' (vector of 2 'unsigned int' values)}}
31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from 'v2u' (vector of 2 'unsigned int' values)}}
36 v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' values) from 'v2u' (vector of 2 'unsigned int' values)}}
  /external/libcxx/test/containers/sequences/deque/deque.cons/
copy.pass.cpp 36 std::deque<int, test_allocator<int> > v2 = v; local
37 assert(v2 == v);
38 assert(v2.get_allocator() == v.get_allocator());
43 std::deque<int, other_allocator<int> > v2 = v; local
44 assert(v2 == v);
45 assert(v2.get_allocator() == other_allocator<int>(-2));
56 std::deque<int, min_allocator<int> > v2 = v; local
57 assert(v2 == v);
58 assert(v2.get_allocator() == v.get_allocator());
  /external/libcxx/test/containers/sequences/vector/vector.cons/
copy.pass.cpp 39 std::vector<int, test_allocator<int> > v2 = v; local
40 assert(v2 == v);
41 assert(v2.get_allocator() == v.get_allocator());
46 std::vector<int, other_allocator<int> > v2 = v; local
47 assert(v2 == v);
48 assert(v2.get_allocator() == other_allocator<int>(-2));
59 std::vector<int, min_allocator<int> > v2 = v; local
60 assert(v2 == v);
61 assert(v2.get_allocator() == v.get_allocator());
  /external/libcxx/test/containers/sequences/vector.bool/
copy.pass.cpp 40 std::vector<bool, test_allocator<bool> > v2 = v; local
41 assert(v2 == v);
42 assert(v2.get_allocator() == v.get_allocator());
47 std::vector<bool, other_allocator<bool> > v2 = v; local
48 assert(v2 == v);
49 assert(v2.get_allocator() == other_allocator<bool>(-2));
60 std::vector<bool, min_allocator<bool> > v2 = v; local
61 assert(v2 == v);
62 assert(v2.get_allocator() == v.get_allocator());
  /external/libcxx/test/numerics/numarray/template.valarray/valarray.cassign/
modulo_valarray.pass.cpp 28 std::valarray<T> v2(a2, N);
30 v2 %= v1;
31 assert(v1.size() == v2.size());
34 assert(v2[i] == v3[i]);
  /external/mesa3d/src/mesa/swrast/
s_feedback.h 37 const SWvertex *v1, const SWvertex *v2 );
40 const SWvertex *v1, const SWvertex *v2 );
45 const SWvertex *v1, const SWvertex *v2 );
48 const SWvertex *v1, const SWvertex *v2 );
  /cts/tests/tests/view/src/android/view/cts/
View_FocusHandlingTest.java 39 View v2 = activity.findViewById(R.id.view2); local
44 assertNotNull(v2);
50 assertFalse(v2.isFocusable());
55 v2.setFocusable(true);
60 assertTrue(v2.isFocusable());
67 v2.setNextFocusLeftId(R.id.view1);
68 v2.setNextFocusDownId(R.id.view4);
80 assertEquals(R.id.view1, v2.getNextFocusLeftId());
81 assertEquals(R.id.view4, v2.getNextFocusDownId());
90 assertSame(v2, v1.focusSearch(View.FOCUS_RIGHT))
    [all...]
  /device/samsung/manta/gps/
gps.conf 1 XTRA_SERVER_1=http://gllto.glpals.com/7day/glo/v2/latest/lto2.dat
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
passthroughlumalpha3d11ps.h 34 dcl_input_ps linear v2.xyz
37 sample r0.xyzw, v2.xyzx, t0.xyzw, s0
passthroughrgba3d11ps.h 34 dcl_input_ps linear v2.xyz
36 sample o0.xyzw, v2.xyzx, t0.xyzw, s0
  /external/chromium_org/third_party/skia/tests/
PathOpsDVectorTest.cpp 27 SkDVector v2 = tests[index] - tests[index + 1]; local
28 SkASSERT(ValidVector(v2));
29 v1 += v2;
31 SkDPoint p = tests[index + 1] + v2;
33 v2 -= v2;
34 REPORTER_ASSERT(reporter, v2.fX == 0 && v2.fY == 0);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-347543.js 13 var v2 = new Array(10);
15 f(v2);
16 f(v2);
18 f(v2);
regress-force-representation.js 16 var v2 = -0;
17 var t = v2++;
18 v2++;
19 return Math.max(v2++, v1++);
  /external/clang/test/PCH/
cxx-implicit-moves.cpp 20 float test(float v1, float v2) {
21 NSSize s = NSMakeSize(v1, v2);

Completed in 957 milliseconds

1 2 3 45 6 7 8 91011>>