Searched defs:v0 (Results 1 - 25 of 147) sorted by relevance

123456

/external/clang/test/Sema/
H A D2010-05-31-palignr.c16 vSInt16 v0; local
17 v0 = *vdtbl;
18 v0 = _mm_alignr_epi8(v0, v0, i); // expected-error {{argument to '__builtin_ia32_palignr128' must be a constant integer}}
/external/clang/test/CodeGen/
H A Dvld_dup.c7 int32_t v0[3]; local
16 v1 = vld3_dup_s32(v0);
H A Ddebug-info.c5 struct { typeof(0) f0; } v0; local
/external/mdnsresponder/Clients/
H A DClientCommon.c57 int v0 = cstr[-1] - '0'; // then interpret as three-digit decimal local
60 int val = v0 * 100 + v1 * 10 + v2;
/external/deqp/framework/delibs/debase/
H A DdeMathTest.c63 } v0, v1; local
65 v0.f = deInt32ToFloatRoundToNegInf(x);
68 DE_TEST_ASSERT(v0.u + 1 == v1.u || v0.u == v1.u + 1);
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DEdgeInfo.java44 public EdgeInfo(int v0, int v1) { argument
45 m_v0 = v0;
H A DFaceInfo.java43 public FaceInfo(int v0, int v1, int v2){ argument
44 m_v0 = v0; m_v1 = v1; m_v2 = v2;
/external/iptables/include/linux/netfilter/
H A Dxt_string.h23 } v0; member in union:xt_string_info::__anon6395
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_string.h23 } v0; member in union:xt_string_info::__anon7050
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.c56 _swrast_feedback_triangle(struct gl_context *ctx, const SWvertex *v0, argument
59 if (!_swrast_culltriangle(ctx, v0, v1, v2)) {
64 feedback_vertex(ctx, v0, v0);
69 feedback_vertex(ctx, v0, v2);
78 _swrast_feedback_line(struct gl_context *ctx, const SWvertex *v0, argument
90 feedback_vertex(ctx, v0, v0);
94 feedback_vertex(ctx, v0, v1);
111 _swrast_select_triangle(struct gl_context *ctx, const SWvertex *v0, argument
125 _swrast_select_line(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) argument
[all...]
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_triemit.h39 VERTEX *v0,
50 PRINT_VERTEX(v0);
56 COPY_DWORDS( j, vb, vertsize, v0 );
63 VERTEX *v0,
74 PRINT_VERTEX(v0);
80 COPY_DWORDS( j, vb, vertsize, v0 );
91 VERTEX *v0,
101 PRINT_VERTEX(v0);
106 COPY_DWORDS( j, vb, vertsize, v0 );
114 VERTEX *v0,
38 quad( CTX_ARG, VERTEX *v0, VERTEX *v1, VERTEX *v2, VERTEX *v3 ) argument
62 quad( CTX_ARG, VERTEX *v0, VERTEX *v1, VERTEX *v2, VERTEX *v3 ) argument
90 triangle( CTX_ARG, VERTEX *v0, VERTEX *v1, VERTEX *v2 ) argument
113 line( CTX_ARG, VERTEX *v0, VERTEX *v1 ) argument
[all...]
/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_vcgen_stroke.cpp66 const vertex_dist& v0,
71 FX_FLOAT dx = FXSYS_MulDiv(v1.y - v0.y, width, len);
72 FX_FLOAT dy = FXSYS_MulDiv(v1.x - v0.x, width, len);
73 cap[0] = v0.x - dx;
74 cap[1] = v0.y + dy;
75 cap[2] = v0.x + dx;
76 cap[3] = v0.y - dy;
65 calc_butt_cap(FX_FLOAT* cap, const vertex_dist& v0, const vertex_dist& v1, FX_FLOAT len, FX_FLOAT width) argument
/external/ceres-solver/internal/ceres/
H A Djet_test.cc52 J MakeJet(double a, double v0, double v1) { argument
55 z.v[0] = v0;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_mutex_test.cc35 T v0 = data_[0]; local
37 CHECK_EQ(data_[i], v0);
45 T v0 = data_[0];
47 CHECK_EQ(data_[i], v0);
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutex_test.cc33 T v0 = data_[0]; local
35 CHECK_EQ(data_[i], v0);
42 T v0 = data_[0]; local
44 CHECK_EQ(data_[i], v0);
/external/eigen/test/
H A Dgeo_homogeneous.cpp29 VectorType v0 = VectorType::Random(), local
38 hv0 << v0, 1; local
39 VERIFY_IS_APPROX(v0.homogeneous(), hv0);
40 VERIFY_IS_APPROX(v0, hv0.hnormalized());
51 VERIFY_IS_APPROX(t1 * (v0.homogeneous().eval()), t1 * v0.homogeneous());
55 VERIFY_IS_APPROX(t2 * (v0.homogeneous().eval()), t2 * v0.homogeneous());
58 VERIFY_IS_APPROX((v0.transpose().rowwise().homogeneous().eval()) * t2,
59 v0
[all...]
H A Dgeo_orthomethods.cpp27 Vector3 v0 = Vector3::Random(), local
37 mat3 << v0.normalized(),
38 (v0.cross(v1)).normalized(),
39 (v0.cross(v1).cross(v0)).normalized();
76 VectorType v0 = VectorType::Random(size); local
79 VERIFY_IS_MUCH_SMALLER_THAN(v0.unitOrthogonal().dot(v0), Scalar(1));
80 VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), RealScalar(1));
84 v0
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe.c112 * Build primitive to render a point with vertex at v0.
115 const char *v0 )
121 prim.v[0] = (struct vertex_header *)v0;
128 * Build primitive to render a line with vertices at v0, v1.
133 const char *v0,
140 prim.v[0] = (struct vertex_header *)v0;
148 * Build primitive to render a triangle with vertices at v0, v1, v2.
153 char *v0,
159 prim.v[0] = (struct vertex_header *)v0;
131 do_line( struct draw_context *draw, ushort flags, const char *v0, const char *v1 ) argument
151 do_triangle( struct draw_context *draw, ushort flags, char *v0, char *v1, char *v2 ) argument
H A Ddraw_pipe_cull.c60 const float *v0 = header->v[0]->data[pos]; local
64 /* edge vectors: e = v0 - v2, f = v1 - v2 */
65 const float ex = v0[0] - v2[0];
66 const float ey = v0[1] - v2[1];
H A Ddraw_pipe_unfilled.c61 struct vertex_header *v0 )
64 tmp.v[0] = v0;
69 struct vertex_header *v0,
73 tmp.v[0] = v0;
82 struct vertex_header *v0 = header->v[0]; local
86 if ((header->flags & DRAW_PIPE_EDGE_FLAG_0) && v0->edgeflag) point( stage, v0 );
95 struct vertex_header *v0 = header->v[0]; local
102 if ((header->flags & DRAW_PIPE_EDGE_FLAG_2) && v2->edgeflag) line( stage, v2, v0 );
103 if ((header->flags & DRAW_PIPE_EDGE_FLAG_0) && v0
68 line( struct draw_stage *stage, struct vertex_header *v0, struct vertex_header *v1 ) argument
[all...]
/external/skia/src/effects/gradients/
H A DSkClampRange.cpp68 void SkClampRange::init(SkGradFixed fx0, SkGradFixed dx0, int count, int v0, int v1) { argument
71 fV0 = v0;
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h32 struct V0 : SkOTTableOS2_V0 { } v0; member in union:SkOTTableOS2::Version
/external/clang/test/Headers/
H A Dstddefneeds.cpp5 void* v0 = NULL; // expected-error{{undeclared}} variable
/external/clang/test/SemaCXX/
H A Dcaptured-statements.cpp67 void set(const T &v0) { argument
70 v = v0;
/external/clang/test/SemaTemplate/
H A Dexplicit-instantiation.cpp8 int v0; // expected-note{{refers here}} variable
9 template int v0; // expected-error{{does not refer}} variable

Completed in 2601 milliseconds

123456