Searched refs:v1 (Results 226 - 250 of 1357) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/template.bitset/bitset.cons/
H A Ddefault.pass.cpp21 _LIBCPP_CONSTEXPR std::bitset<N> v1; local
22 assert(v1.size() == N);
24 assert(v1[i] == false);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
H A Dd3d11tex.hlsl.vs.h28 dcl_input v1.xy
33 mul o1.xy, v1.xyxx, l(8.000000, 8.000000, 0.000000, 0.000000)
34 mad o2.xyzw, v1.xyxy, l(1.000000, 1.000000, -1.000000, -1.000000), l(0.000000, 0.000000, 1.000000, 1.000000)
/external/nanopb-c/examples/using_double_on_avr/
H A Ddecode_double.c19 float v1 = double_to_float(message.field1); local
22 printf("Values: %f %f\n", v1, v2);
24 if (v1 == 1234.5678f &&
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_feedback.h37 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 );
H A Ds_lines.h38 const SWvertex *v1 );
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dlogging.h141 #define LOG_API1(v1) LOG_API0() << #v1 << "=" << v1
142 #define LOG_API2(v1, v2) LOG_API1(v1) \
144 #define LOG_API3(v1, v2, v3) LOG_API2(v1, v2) \
148 #define LOG_FERR1(sev, func, v1) LOG_FERR0(sev, func) \
149 << ": " << #v1 << "=" << v1
[all...]
/external/clang/test/Parser/
H A Dpragma-visibility2.c8 int v1; variable
9 // CHECK: @v1 = common hidden global i32 0, align 4
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.h37 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 );
H A Ds_lines.h38 const SWvertex *v1 );
/external/clang/test/Sema/
H A Dvector-assign.c9 v2s v1; 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)}}
16 v1 = v3; // expected-error {{assigning to 'v2s' (vector of 2 'int' values) from incompatible type 'v1s' (vector of 1 'int' value)}}
17 v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from 'v2f' (vector of 2 'float' values)}}
18 v1 = v5; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' values) from 'v4ss' (vector of 4 'short' 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)}}
25 v3 = v1; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type 'v2s' (vector of 2 'int' values)}}
30 v4 = v1; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' values) from 'v2s' (vector of 2 'int' values)}}
35 v5 = v1; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' values) from 'v2s' (vector of 2 'int' values)}}
H A Dvector-cast.c9 t1 v1; local
13 v2 = (t2)v1; // expected-error {{invalid conversion between vector type \
15 v1 = (t1)v2; // expected-error {{invalid conversion between vector type \
19 v1 = (t1)(char *)10; // expected-error {{invalid conversion between vector \
21 v1 = (t1)(long long)10;
22 v1 = (t1)(short)10; // expected-error {{invalid conversion between vector \
25 long long r1 = (long long)v1;
26 short r2 = (short)v1; // expected-error {{invalid conversion between vector \
28 char *r3 = (char *)v1; // expected-error {{invalid conversion between vector\
/external/stlport/test/unit/
H A Dswap_test.cpp90 queue<Obj> v1; local
93 v1.push( Obj() );
94 v1.back().v = -1;
95 v1.push( Obj() );
96 v1.back().v = -2;
105 CPPUNIT_CHECK( v1.size() == 2 );
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method!
110 CPPUNIT_CHECK( v1.size() == 3 );
114 CPPUNIT_CHECK( v1
133 vector<Obj> v1; local
[all...]
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_math_stroke.h91 const vertex_dist& v1,
101 FX_FLOAT xi = v1.x;
102 FX_FLOAT yi = v1.y;
105 v1.x + dx1, v1.y - dy1,
106 v1.x + dx2, v1.y - dy2,
109 FX_FLOAT d1 = calc_distance(v1.x, v1.y, xi, yi);
116 FX_FLOAT x2 = v1
[all...]
/external/libcxx/test/numerics/numarray/template.valarray/valarray.members/
H A Dcshift.pass.cpp26 std::valarray<T> v1(a1, N1);
27 std::valarray<T> v2 = v1.cshift(0);
37 std::valarray<T> v1(a1, N1);
38 std::valarray<T> v2 = v1.cshift(3);
48 std::valarray<T> v1(a1, N1);
49 std::valarray<T> v2 = v1.cshift(10);
59 std::valarray<T> v1(a1, N1);
60 std::valarray<T> v2 = v1.cshift(17);
70 std::valarray<T> v1(a1, N1);
71 std::valarray<T> v2 = v1
101 std::valarray<T> v1; local
[all...]
H A Dshift.pass.cpp26 std::valarray<T> v1(a1, N1);
27 std::valarray<T> v2 = v1.shift(0);
37 std::valarray<T> v1(a1, N1);
38 std::valarray<T> v2 = v1.shift(1);
48 std::valarray<T> v1(a1, N1);
49 std::valarray<T> v2 = v1.shift(9);
59 std::valarray<T> v1(a1, N1);
60 std::valarray<T> v2 = v1.shift(90);
70 std::valarray<T> v1(a1, N1);
71 std::valarray<T> v2 = v1
101 std::valarray<T> v1; local
[all...]
/external/chromium_org/ui/views/
H A Dview_model_utils_unittest.cc15 View v1; local
17 model.Add(&v1, 0);
21 EXPECT_EQ(v1_bounds, v1.bounds());
26 View v1, v2, v3; local
28 model.Add(&v1, 0);
36 model, &v1, ViewModelUtils::HORIZONTAL, -10, 0));
38 model, &v1, ViewModelUtils::HORIZONTAL, 4, 0));
40 model, &v1, ViewModelUtils::HORIZONTAL, 506, 0));
42 model, &v1, ViewModelUtils::HORIZONTAL, 1010, 0));
44 model, &v1, ViewModelUtil
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
H A Dbuffertotexture11_ps_4f.h50 dcl_input_ps constant v1.x
52 ld o0.xyzw, v1.xxxx, t0.xyzw
H A Dbuffertotexture11_ps_4i.h31 dcl_input_ps constant v1.x
33 ld o0.xyzw, v1.xxxx, t0.xyzw
H A Dbuffertotexture11_ps_4ui.h31 dcl_input_ps constant v1.x
33 ld o0.xyzw, v1.xxxx, t0.xyzw
H A Dclearfloat11vs.h25 dcl_input v1.xyzw
30 mov o1.xyzw, v1.xyzw
H A Dclearsint11vs.h25 dcl_input v1.xyzw
30 mov o1.xyzw, v1.xyzw
H A Dclearuint11vs.h25 dcl_input v1.xyzw
30 mov o1.xyzw, v1.xyzw
H A Dpassthrough2d11vs.h25 dcl_input v1.xy
30 mov o1.xy, v1.xyxx
H A Dpassthroughdepth2d11ps.h33 dcl_input_ps linear v1.xy
36 sample r0.xyzw, v1.xyxx, t0.xyzw, s0
H A Dpassthroughlumalpha2d11ps.h33 dcl_input_ps linear v1.xy
36 sample r0.xyzw, v1.xyxx, t0.xyzw, s0

Completed in 3214 milliseconds

1234567891011>>