Searched defs:v2 (Results 176 - 200 of 507) sorted by relevance

1234567891011>>

/external/eigen/unsupported/doc/examples/
H A DBVH_Example.cpp22 double minimumOnObjectObject(const Vector2d &v1, const Vector2d &v2) { ++calls; return (v1 - v2).squaredNorm(); } argument
/external/libunwind/tests/
H A Dppc64-test-altivec.c32 register vector signed int v2; local
122 v2 = vec_init ();
130 vec_nor (v1, vec_add (v2, vec_sub (v3, vec_and (v4, vec_or (v5, v6)))));
144 vec_add (v2,
151 printf ("v2 - ");
152 vec_print (v2);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_cull.c62 const float *v2 = header->v[2]->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];
67 const float fx = v1[0] - v2[0];
68 const float fy = v1[1] - v2[1];
H A Ddraw_pipe_unfilled.c84 struct vertex_header *v2 = header->v[2]; local
88 if ((header->flags & DRAW_PIPE_EDGE_FLAG_2) && v2->edgeflag) point( stage, v2 );
97 struct vertex_header *v2 = header->v[2]; local
102 if ((header->flags & DRAW_PIPE_EDGE_FLAG_2) && v2->edgeflag) line( stage, v2, v0 );
104 if ((header->flags & DRAW_PIPE_EDGE_FLAG_1) && v1->edgeflag) line( stage, v1, v2 );
/external/mesa3d/src/glx/
H A Drender2.c173 GLint uord, GLdouble v1, GLdouble v2, GLint vstr,
200 __GLX_PUT_DOUBLE(28, v2);
218 __GLX_PUT_DOUBLE(32, v2);
251 GLint uord, GLfloat v1, GLfloat v2, GLint vstr, GLint vord,
284 __GLX_PUT_FLOAT(24, v2);
300 __GLX_PUT_FLOAT(28, v2);
172 __indirect_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustr, GLint uord, GLdouble v1, GLdouble v2, GLint vstr, GLint vord, const GLdouble * pnts) argument
250 __indirect_glMap2f(GLenum target, GLfloat u1, GLfloat u2, GLint ustr, GLint uord, GLfloat v1, GLfloat v2, GLint vstr, GLint vord, const GLfloat * pnts) argument
/external/skia/src/sfnt/
H A DSkOTTable_OS_2.h34 struct V2 : SkOTTableOS2_V2 { } v2; member in union:SkOTTableOS2::Version
/external/stlport/test/unit/
H A Dmvctor_traits_test.cpp126 vector<MovableStruct> v2 = vect; local
134 vect.insert(vect.begin() + 2, v2.begin(), v2.end() );
180 //vect with 3 elements and v2 with 4 elements are now out of scope
226 vector<CompleteMovableStruct> v2 = vect; local
234 vect.insert(vect.begin() + 2, v2.begin(), v2.end());
278 //vect with 3 elements and v2 with 4 elements are now out of scope
457 //deq with 3 elements and v2 with 4 elements are now out of scope
/external/zlib/src/contrib/iostream3/
H A Dzfstream.h425 T2 v2); member in class:gzomanip2
451 T2 v2)
452 : func(f), val1(v1), val2(v2)
/external/chromium_org/cc/animation/
H A Dscroll_offset_animation_curve.cc38 const double v2 = velocity * velocity; local
39 const double x1 = std::sqrt(r2 / (v2 + 1));
40 const double y1 = std::sqrt(r2 * v2 / (v2 + 1));
/external/chromium_org/net/tools/balsa/
H A Dbalsa_headers_test.cc174 std::vector<base::StringPiece> v1, v2, v3; local
177 headers_->GetAllOfHeader("key2", &v2);
184 ASSERT_EQ(1u, v2.size());
187 ASSERT_EQ("value2", v2[0]);
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A Daead_test.c281 unsigned char v, v2; local
287 v2 = hex_digit(line[i]);
288 if (v > 15 || v2 > 15) {
293 v |= v2;
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dgcm_test.c281 uint8_t v, v2; local
283 !from_hex(&v2, in[i+1])) {
288 buf[i/2] = (v << 4) | v2;
/external/chromium_org/third_party/freetype/src/base/
H A Dfttrigon.c83 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local
90 v2 = (FT_UInt32)( val & 0xFFFFL );
96 lo1 = k1 * v2 + k2 * v1; /* can't overflow */
98 lo2 = ( k2 * v2 ) >> 16;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_offset.c75 float *v2 = header->v[2]->data[pos]; local
77 /* edge vectors e = v0 - v2, f = v1 - v2 */
78 float ex = v0[0] - v2[0];
79 float ey = v0[1] - v2[1];
80 float ez = v0[2] - v2[2];
81 float fx = v1[0] - v2[0];
82 float fy = v1[1] - v2[1];
83 float fz = v1[2] - v2[2];
104 v2[
[all...]
H A Ddraw_pipe_wide_line.c69 struct vertex_header *v2 = dup_vert(stage, header->v[1], 2); local
74 float *pos2 = v2->data[pos];
141 tri.v[1] = v2;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_clip_tri.c478 struct brw_reg v2 = get_tmp(c); local
495 brw_MOV(p, v2, deref_4f(vt2, hpos_offset));
504 brw_CMP(p, t3, BRW_CONDITIONAL_L, v2, negate(get_element(v2, 3)));
545 brw_CMP(p, t3, BRW_CONDITIONAL_G, v2, get_element(v2, 3));
H A Dbrw_clip_unfilled.c59 struct brw_reg v2 = byte_offset(c->reg.vertex[2], hpos_offset); local
76 brw_MOV(p, v2n, v2);
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
H A Dss_triangle.c57 const SWvertex *v2);
70 const SWvertex *v2)
75 if (ef[e2]) _swrast_Line( ctx, v2, v0 );
77 if (ef[e1]) _swrast_Line( ctx, v1, v2 );
80 if (ef[e1]) _swrast_Line( ctx, v1, v2 );
81 if (ef[e2]) _swrast_Line( ctx, v2, v0 );
96 const SWvertex *v2)
100 if (ef[e2]) _swrast_Point( ctx, v2 );
121 SWvertex *v2 = &verts[e2]; local
143 /* copy v2 colo
63 _swsetup_edge_render_line_tri(struct gl_context *ctx, const GLubyte *ef, GLuint e0, GLuint e1, GLuint e2, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
89 _swsetup_edge_render_point_tri(struct gl_context *ctx, const GLubyte *ef, GLuint e0, GLuint e1, GLuint e2, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
[all...]
H A Dss_tritmp.h217 GLuint v1, GLuint v2, GLuint v3 )
228 TAG(triangle)( ctx, v1, v2, v3 );
233 TAG(triangle)( ctx, v1, v2, v3 );
216 quadfunc( struct gl_context *ctx, GLuint v0, GLuint v1, GLuint v2, GLuint v3 ) argument
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_cliptmp.h187 TAG(clip_tri)( struct gl_context *ctx, GLuint v0, GLuint v1, GLuint v2, GLubyte mask ) argument
194 GLuint pv = v2;
200 ASSIGN_3V(inlist, v2, v0, v1 ); /* pv rotated to slot zero */
266 TAG(clip_quad)( struct gl_context *ctx, GLuint v0, GLuint v1, GLuint v2, GLuint v3, argument
280 ASSIGN_4V(inlist, v3, v0, v1, v2 ); /* pv rotated to slot zero */
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_vertex.h58 GLfloat u2, v2; member in struct:__anon14590::__anon14591
67 GLfloat u2, v2, q2; member in struct:__anon14590::__anon14592
/external/chromium_org/third_party/skia/src/animator/
H A DSkOperandIterpolator.cpp112 SkOperand v1[3], v2[3], v[3], vv[3]; local
116 inter.setKeyFrame(1, 200, iset(v2, 110, 220, 330));
132 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
136 SkASSERT(memcmp(v, v2, sizeof(v)) == 0);
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLProgramDataManager.cpp140 void GrGLProgramDataManager::set3f(UniformHandle u, GrGLfloat v0, GrGLfloat v1, GrGLfloat v2) const {
146 GR_GL_CALL(fGpu->glInterface(), Uniform3f(uni.fFSLocation, v0, v1, v2));
149 GR_GL_CALL(fGpu->glInterface(), Uniform3f(uni.fVSLocation, v0, v1, v2));
172 GrGLfloat v2,
179 GR_GL_CALL(fGpu->glInterface(), Uniform4f(uni.fFSLocation, v0, v1, v2, v3));
182 GR_GL_CALL(fGpu->glInterface(), Uniform4f(uni.fVSLocation, v0, v1, v2, v3));
169 set4f(UniformHandle u, GrGLfloat v0, GrGLfloat v1, GrGLfloat v2, GrGLfloat v3) const argument
/external/chromium_org/third_party/smhasher/src/
H A DSpeedTest.cpp138 std::vector<double> v2; local
140 v2.insert(v2.begin(),v.begin()+a,v.begin()+b+1);
142 v.swap(v2);
/external/chromium_org/third_party/webrtc/base/
H A Dchecks.h98 std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) { argument
100 ss << names << " (" << v1 << " vs. " << v2 << ")"; local
131 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
133 if (v1 op v2) return NULL; \
134 else return rtc::MakeCheckOpString(v1, v2, names); \
136 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
137 if (v1 op v2) return NULL; \
138 else return rtc::MakeCheckOpString(v1, v2, names); \
159 #define DCHECK_EQ(v1, v2) CHECK_EQ(v1, v2)
[all...]

Completed in 9154 milliseconds

1234567891011>>