Searched defs:v0 (Results 126 - 150 of 230) sorted by relevance

12345678910

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_setup.c90 const float (*v0)[4],
96 setup->triangle( setup, v0, v1, v2 );
101 const float (*v0)[4],
106 setup->line( setup, v0, v1 );
111 const float (*v0)[4])
115 setup->point( setup, v0 );
89 first_triangle( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
100 first_line( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4]) argument
110 first_point( struct lp_setup_context *setup, const float (*v0)[4]) argument
H A Dlp_setup_tri.c147 const float (*v0)[4],
154 const float ex = v0[0][0] - v2[0][0];
155 const float ey = v0[0][1] - v2[0][1];
169 lp_setup_print_vertex(setup, "v0", v0);
237 const float (*v0)[4],
254 lp_setup_print_triangle(setup, v0, v1, v2);
309 tri->v[0][0] = v0[0][0];
312 tri->v[0][1] = v0[0][1];
321 setup->setup.variant->jit_function( v0,
146 lp_setup_print_triangle(struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
235 do_triangle_ccw(struct lp_setup_context *setup, struct fixed_position* position, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4], boolean frontfacing ) argument
768 retry_triangle_ccw( struct lp_setup_context *setup, struct fixed_position* position, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4], boolean front) argument
790 calc_fixed_position( struct lp_setup_context *setup, struct fixed_position* position, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
871 triangle_cw( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4] ) argument
891 triangle_ccw( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
906 triangle_both( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4] ) argument
937 triangle_nop( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4] ) argument
[all...]
H A Dlp_state_setup.c63 LLVMValueRef v0; member in struct:lp_setup_args
221 a0_back = LLVMBuildLoad(b, LLVMBuildGEP(b, args->v0, &idx2, 1, ""), "v0a_back");
336 attribv[0] = LLVMBuildLoad(b, LLVMBuildGEP(b, args->v0, &idx, 1, ""), "v0a");
426 LLVMValueRef v0_oow = vec4f_from_scalar(gallivm, vert_attrib(gallivm, args->v0, 0, 3, ""), "v0_oow");
481 /* Edge v0 -> v1 */
507 /* Edge v2 -> v0 */
712 arg_types[0] = LLVMPointerType(vec4f_type, 0); /* v0 */
729 args.v0 = LLVMGetParam(variant->function, 0);
737 lp_build_name(args.v0, "in_v0");
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Duniforms.c131 _mesa_Uniform1fARB(GLint location, GLfloat v0) argument
134 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_FLOAT);
138 _mesa_Uniform2fARB(GLint location, GLfloat v0, GLfloat v1) argument
142 v[0] = v0;
148 _mesa_Uniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) argument
152 v[0] = v0;
159 _mesa_Uniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, argument
164 v[0] = v0;
172 _mesa_Uniform1iARB(GLint location, GLint v0) argument
175 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_IN
179 _mesa_Uniform2iARB(GLint location, GLint v0, GLint v1) argument
189 _mesa_Uniform3iARB(GLint location, GLint v0, GLint v1, GLint v2) argument
200 _mesa_Uniform4iARB(GLint location, GLint v0, GLint v1, GLint v2, GLint v3) argument
270 _mesa_Uniform1ui(GLint location, GLuint v0) argument
277 _mesa_Uniform2ui(GLint location, GLuint v0, GLuint v1) argument
287 _mesa_Uniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2) argument
298 _mesa_Uniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_triangle.c55 const SWvertex *v0,
60 GLfloat ex = v1->attrib[FRAG_ATTRIB_WPOS][0] - v0->attrib[FRAG_ATTRIB_WPOS][0];
61 GLfloat ey = v1->attrib[FRAG_ATTRIB_WPOS][1] - v0->attrib[FRAG_ATTRIB_WPOS][1];
62 GLfloat fx = v2->attrib[FRAG_ATTRIB_WPOS][0] - v0->attrib[FRAG_ATTRIB_WPOS][0];
63 GLfloat fy = v2->attrib[FRAG_ATTRIB_WPOS][1] - v0->attrib[FRAG_ATTRIB_WPOS][1];
913 const SWvertex *v0,
917 (void) (ctx && v0 && v1 && v2);
928 _swrast_add_spec_terms_triangle(struct gl_context *ctx, const SWvertex *v0, argument
931 SWvertex *ncv0 = (SWvertex *)v0; /* drop const qualifier */
941 /* sum v0 */
54 _swrast_culltriangle( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2 ) argument
912 nodraw_triangle( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2 ) argument
[all...]
/external/chromium_org/third_party/skia/experimental/StrokePathRenderer/
H A DGrStrokePathRenderer.cpp141 SkVector v0 = dir; local
155 if (v0.normalize() && v1.normalize()) {
156 SkScalar dotProd = v0.dot(v1);
161 bool ccw = !is_clockwise(v0, v1);
180 const SkPoint pt2 = *pt0+v0, pt3 = *pt1+v1;
200 v0.setLength(SkScalarSqrt(sqRLimit));
201 miterPt[0] = *pt0+v0;
/external/chromium_org/v8/src/mips/
H A Dregexp-macro-assembler-mips.cc118 __ li(v0, Operand(FAILURE));
335 BranchOrBacktrack(on_no_match, eq, v0, Operand(zero_reg));
567 __ li(v0, Operand(FAILURE));
623 __ li(v0, Operand(EXCEPTION));
629 __ Branch(&return_v0, ne, v0, Operand(zero_reg));
748 __ mov(v0, a0);
776 __ li(v0, Operand(SUCCESS));
779 // Exit and return v0.
782 __ lw(v0, MemOperand(frame_pointer(), kSuccessfulCaptures));
811 __ Branch(&return_v0, ne, v0, Operan
843 __ mov(backtrack_stackpointer(), v0); local
[all...]
/external/chromium_org/v8/src/mips64/
H A Dregexp-macro-assembler-mips64.cc154 __ li(v0, Operand(FAILURE));
371 BranchOrBacktrack(on_no_match, eq, v0, Operand(zero_reg));
603 __ li(v0, Operand(FAILURE));
668 __ li(v0, Operand(EXCEPTION));
674 __ Branch(&return_v0, ne, v0, Operand(zero_reg));
794 __ mov(v0, a0);
822 __ li(v0, Operand(SUCCESS));
825 // Exit and return v0.
828 __ ld(v0, MemOperand(frame_pointer(), kSuccessfulCaptures));
857 __ Branch(&return_v0, ne, v0, Operan
889 __ mov(backtrack_stackpointer(), v0); local
[all...]
/external/clang/test/Index/
H A Dprint-type-size.cpp354 double v0; member in struct:Test3::BaseStruct
/external/clang/test/SemaCXX/
H A Dcxx1y-variable-templates_top_level.cpp78 template<typename T> T v0; // expected-note {{previous definition is here}} member in namespace:odr_tmpl::pvt_cvt
79 template<typename T> T v0; // expected-error {{redefinition of 'v0'}} member in namespace:odr_tmpl::pvt_cvt
114 template<typename T> auto v0; // expected-error {{declaration of variable 'v0' with type 'auto' requires an initializer}} member in namespace:odr_tmpl::pvt_auto
/external/deqp/framework/randomshaders/
H A DrsgProgramExecutor.cpp124 inline float interpolateTri (float v0, float v1, float v2, float x, float y) argument
126 return v0 + (v1-v0)*x + (v2-v0)*y;
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_clip.c471 struct vertex_header *v0 = header->v[0]; local
479 const float dp0 = getclipdist(clipper, v0, plane_idx);
498 if (v0->clipmask) {
499 interp( clipper, stage->tmp[0], t0, v0, v1 );
500 copy_flat(stage, stage->tmp[0], v0);
504 newprim.v[0] = v0;
508 interp( clipper, stage->tmp[1], t1, v1, v0 );
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup.c90 const float (*v0)[4],
96 setup->triangle( setup, v0, v1, v2 );
101 const float (*v0)[4],
106 setup->line( setup, v0, v1 );
111 const float (*v0)[4])
115 setup->point( setup, v0 );
89 first_triangle( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
100 first_line( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4]) argument
110 first_point( struct lp_setup_context *setup, const float (*v0)[4]) argument
H A Dlp_setup_tri.c147 const float (*v0)[4],
154 const float ex = v0[0][0] - v2[0][0];
155 const float ey = v0[0][1] - v2[0][1];
169 lp_setup_print_vertex(setup, "v0", v0);
237 const float (*v0)[4],
254 lp_setup_print_triangle(setup, v0, v1, v2);
309 tri->v[0][0] = v0[0][0];
312 tri->v[0][1] = v0[0][1];
321 setup->setup.variant->jit_function( v0,
146 lp_setup_print_triangle(struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
235 do_triangle_ccw(struct lp_setup_context *setup, struct fixed_position* position, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4], boolean frontfacing ) argument
768 retry_triangle_ccw( struct lp_setup_context *setup, struct fixed_position* position, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4], boolean front) argument
790 calc_fixed_position( struct lp_setup_context *setup, struct fixed_position* position, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
871 triangle_cw( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4] ) argument
891 triangle_ccw( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4]) argument
906 triangle_both( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4] ) argument
937 triangle_nop( struct lp_setup_context *setup, const float (*v0)[4], const float (*v1)[4], const float (*v2)[4] ) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Duniforms.c131 _mesa_Uniform1fARB(GLint location, GLfloat v0) argument
134 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_FLOAT);
138 _mesa_Uniform2fARB(GLint location, GLfloat v0, GLfloat v1) argument
142 v[0] = v0;
148 _mesa_Uniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2) argument
152 v[0] = v0;
159 _mesa_Uniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, argument
164 v[0] = v0;
172 _mesa_Uniform1iARB(GLint location, GLint v0) argument
175 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_IN
179 _mesa_Uniform2iARB(GLint location, GLint v0, GLint v1) argument
189 _mesa_Uniform3iARB(GLint location, GLint v0, GLint v1, GLint v2) argument
200 _mesa_Uniform4iARB(GLint location, GLint v0, GLint v1, GLint v2, GLint v3) argument
270 _mesa_Uniform1ui(GLint location, GLuint v0) argument
277 _mesa_Uniform2ui(GLint location, GLuint v0, GLuint v1) argument
287 _mesa_Uniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2) argument
298 _mesa_Uniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3) argument
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_triangle.c55 const SWvertex *v0,
60 GLfloat ex = v1->attrib[FRAG_ATTRIB_WPOS][0] - v0->attrib[FRAG_ATTRIB_WPOS][0];
61 GLfloat ey = v1->attrib[FRAG_ATTRIB_WPOS][1] - v0->attrib[FRAG_ATTRIB_WPOS][1];
62 GLfloat fx = v2->attrib[FRAG_ATTRIB_WPOS][0] - v0->attrib[FRAG_ATTRIB_WPOS][0];
63 GLfloat fy = v2->attrib[FRAG_ATTRIB_WPOS][1] - v0->attrib[FRAG_ATTRIB_WPOS][1];
913 const SWvertex *v0,
917 (void) (ctx && v0 && v1 && v2);
928 _swrast_add_spec_terms_triangle(struct gl_context *ctx, const SWvertex *v0, argument
931 SWvertex *ncv0 = (SWvertex *)v0; /* drop const qualifier */
941 /* sum v0 */
54 _swrast_culltriangle( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2 ) argument
912 nodraw_triangle( struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2 ) argument
[all...]
/external/opencv/cv/src/
H A Dcvfloodfill.cpp343 Cv32suf v0, v1, v2; local
349 v0.i = newVal[0]; v1.i = newVal[1]; v2.i = newVal[2];
350 region->value = cvScalar( v0.f, v1.f, v2.f );
H A Dcvgeometry.cpp211 CvPoint v0, v; local
217 v0 = v;
220 if( (v0.y <= ip.y && v.y <= ip.y) ||
221 (v0.y > ip.y && v.y > ip.y) ||
222 (v0.x < ip.x && v.x < ip.x) )
224 if( ip.y == v.y && (ip.x == v.x || (ip.y == v0.y &&
225 ((v0.x <= ip.x && ip.x <= v.x) || (v.x <= ip.x && ip.x <= v0.x)))) )
230 dist = (ip.y - v0.y)*(v.x - v0
242 CvPoint2D32f v0, v; local
[all...]
H A Dcvundistort.cpp51 float u0 = intrinsic_matrix[2], v0 = intrinsic_matrix[5]; local
63 float y = (v - v0)*ify, y2 = y*y;
193 float u0, v0, fx, fy, ifx, ify, x0, y0, k1, k2, k3, p1, p2; local
230 u0 = a[2]; v0 = a[5];
242 float y = (v - v0)*ify, y2 = y*y;
277 double fx, fy, u0, v0, k1, k2, k3, p1, p2; local
340 u0 = a[2]; v0 = a[5];
360 double v = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + v0;
/external/opencv/cxcore/src/
H A Dcxsvd.cpp244 double *a1, *u0 = uT, *v0 = vT; local
432 vT = v0 + n1 * ldvT;
445 hv = v0 + (ldvT + 1) * i;
468 vT = v0;
639 float *a1, *u0 = uT, *v0 = vT; local
829 vT = v0 + n1 * ldvT;
842 hv = v0 + (ldvT + 1) * i;
865 vT = v0;
/external/skia/experimental/StrokePathRenderer/
H A DGrStrokePathRenderer.cpp141 SkVector v0 = dir; local
155 if (v0.normalize() && v1.normalize()) {
156 SkScalar dotProd = v0.dot(v1);
161 bool ccw = !is_clockwise(v0, v1);
180 const SkPoint pt2 = *pt0+v0, pt3 = *pt1+v1;
200 v0.setLength(SkScalarSqrt(sqRLimit));
201 miterPt[0] = *pt0+v0;
/external/skia/src/effects/gradients/
H A DSkGradientShaderPriv.h23 static inline void sk_memset32_dither(uint32_t dst[], uint32_t v0, uint32_t v1, argument
26 if (v0 == v1) {
27 sk_memset32(dst, v0, count);
31 *dst++ = v0;
35 *dst = v0;
/external/stlport/src/
H A Dnum_get_float.cpp124 const uint64 v0 = v & low_mask; local
127 uint64 t = u0 * v0;
130 t = u1 * v0 + (t >> 32);
/external/webp/src/enc/
H A Dpicture_csp.c130 const int v0 = kLinearToGammaTab[tab_pos]; local
132 const int y = v1 * x + v0 * ((kGammaTabScale << 2) - x); // interpolate
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_ppc.c553 int v0, v1; local
556 v0 = get_src_vec(gen, inst, 0, TGSI_CHAN_X);
561 /* v1 = 1.0 / sqrt(v0) */
562 ppc_vrsqrtefp(gen->f, v1, v0);
565 /* v1 = 1.0 / v0 */
566 ppc_vrefp(gen->f, v1, v0);
587 int v0 = get_src_vec(gen, inst, 0, chan_index); /* v0 = srcreg[0] */ local
594 ppc_vandc(gen->f, v1, v0, bit31_vec); /* v1 = v0
638 int v0 = get_src_vec(gen, inst, 0, chan); local
681 int v0 = get_src_vec(gen, inst, 0, chan); local
718 int v0 = get_src_vec(gen, inst, 0, chan); local
766 int v0, v1, v2; local
[all...]

Completed in 5548 milliseconds

12345678910