Home
last modified time | relevance | path

Searched refs:STRIDE_F (Results 1 – 12 of 12) sorted by relevance

/external/mesa3d/src/mesa/math/
Dm_dotprod_tmp.h46 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) { in TAG()
67 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) { in TAG()
88 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) { in TAG()
Dm_vector.c152 for (; d != v->start; STRIDE_F(d, v->stride), i++) in _mesa_vector4f_print()
159 for (; i < count; STRIDE_F(d, v->stride), i++) in _mesa_vector4f_print()
164 for (; i < count; STRIDE_F(d, v->stride), i++) in _mesa_vector4f_print()
175 i++, STRIDE_F(d, v->stride)) { in _mesa_vector4f_print()
Dm_debug_clip.c81 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) { in ref_cliptest_points4()
138 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) { in ref_cliptest_points3()
176 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) { in ref_cliptest_points2()
303 STRIDE_F(c, source->stride * i); in test_cliptest_function()
Dm_xform.c82 #define STRIDE_LOOP for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) )
/external/mesa3d/src/mesa/tnl/
Dt_vb_texgen.c108 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) { in build_m3()
136 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) { in build_m2()
193 STRIDE_F(coord,stride); in build_f3()
194 STRIDE_F(f,fstride); in build_f3()
195 STRIDE_F(norm, normal->stride); in build_f3()
222 STRIDE_F(coord,stride); in build_f2()
223 STRIDE_F(f,fstride); in build_f2()
224 STRIDE_F(norm, normal->stride); in build_f2()
284 for (i=0;i<count;i++, STRIDE_F(norm, normal->stride)) { in texgen_normal_map_nv()
388 for (i=0;i<count;i++, STRIDE_F(norm, normal->stride)) { in texgen()
[all …]
Dt_vb_fog.c115 for ( i = 0 ; i < n ; i++, STRIDE_F(v, stride)) { in compute_fog_blend_factors()
123 for ( i = 0 ; i < n ; i++, STRIDE_F(v,stride)) { in compute_fog_blend_factors()
130 for ( i = 0 ; i < n ; i++, STRIDE_F(v, stride)) { in compute_fog_blend_factors()
190 STRIDE_F(coord, input->stride); in run_fog_stage()
205 STRIDE_F(coord, VB->EyePtr->stride); in run_fog_stage()
Dt_vb_lighttmp.h88 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) { in TAG()
269 for (j = 0; j < nr; j++,STRIDE_F(vertex,vstride),STRIDE_F(normal,nstride)) { in TAG()
456 for (j = 0; j < nr; j++, STRIDE_F(normal,nstride)) { in TAG()
562 for (j = 0; j < nr; j++, STRIDE_F(normal,nstride)) { in TAG()
Dt_vb_vertex.c90 STRIDE_F(coord, stride); \
Dt_vb_light.c206 STRIDE_F(store->mat[i].ptr, store->mat[i].stride); in update_materials()
Dt_vb_program.c112 STRIDE_F(coord, stride); in userclip()
/external/mesa3d/src/mesa/sparc/
Dnorm.S53 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
118 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
192 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
239 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
298 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
355 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
405 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
447 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
504 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
540 add %o5, %g2, %o5 ! STRIDE_F(from, stride)
[all …]
/external/mesa3d/src/mesa/main/
Dmacros.h223 #define STRIDE_F(p, i) (p = (GLfloat *)((GLubyte *)p + i)) macro