Searched refs:u1 (Results 1 - 25 of 80) sorted by relevance

1234

/xsrc/external/mit/glu/dist/src/libnurbs/interface/
H A DbezierEval.h36 void bezierCurveEval(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[]);
37 void bezierCurveEvalDer(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retDer[]);
38 void bezierCurveEvalDerGen(int der, float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retDer[]);
41 void bezierSurfEvalDerGen(int uder, int vder, float u0, float u1, int uorder, float v0, float v1, int vorder, int dimension, float *ctlpoints, int ustride, int vstride, float u, float v, float ret[]);
43 void bezierSurfEval(float u0, float u1, int uorder, float v0, float v1, int vorder, int dimension, float *ctlpoints, int ustride, int vstride, float u, float v, float ret[]);
45 void bezierSurfEvalNormal(float u0, float u1, int uorder, float v0, float v1, int vorder, int dimension, float *ctlpoints, int ustride, int vstride, float u, float v, float retNormal[]);
H A DbezierEval.cc61 static void bezierCurveEvalfast(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[]);
75 void bezierCurveEval(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[]) argument
77 float uprime = (u-u0)/(u1-u0);
99 void bezierCurveEvalfast(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retpoint[])
101 float uprime = (u-u0)/(u1-u0);
125 void bezierCurveEvalDer(float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retDer[]) argument
128 float width = u1-u0;
143 bezierCurveEval(u0, u1, order-1, (float*) buf, MAX_DIMENSION, dimension, u, retDer);
146 void bezierCurveEvalDerGen(int der, float u0, float u1, int order, float *ctlpoints, int stride, int dimension, float u, float retDer[]) argument
150 float width=u1
176 bezierSurfEvalDerGen(int uder,int vder,float u0,float u1,int uorder,float v0,float v1,int vorder,int dimension,float * ctlpoints,int ustride,int vstride,float u,float v,float ret[]) argument
192 bezierSurfEval(float u0,float u1,int uorder,float v0,float v1,int vorder,int dimension,float * ctlpoints,int ustride,int vstride,float u,float v,float ret[]) argument
202 bezierSurfEvalNormal(float u0,float u1,int uorder,float v0,float v1,int vorder,int dimension,float * ctlpoints,int ustride,int vstride,float u,float v,float retNormal[]) argument
[all...]
H A Dinsurfeval.cc389 void OpenGLSurfaceEvaluator::inMapGrid2f(int nu, REAL u0, REAL u1, argument
393 global_grid_u1 = u1;
413 REAL u1 = (i==global_grid_nu)? global_grid_u1:(global_grid_u0 + i*du); local in function:OpenGLSurfaceEvaluator::inEvalMesh2
420 inDoEvalCoord2(u1, v1, point, normal);
434 REAL u1 = (j == global_grid_nu)? global_grid_u1: (global_grid_u0 +j*du); local in function:OpenGLSurfaceEvaluator::inEvalMesh2
435 inDoEvalCoord2(u1, v2, point, normal);
436 inDoEvalCoord2(u1, v1, point, normal);
560 REAL u1 = global_ev_u1; local in function:OpenGLSurfaceEvaluator::inDoEvalCoord2
562 if(u-MYDELTA*(u2-u1) < u1)
642 REAL u1 = global_ev_u1; local in function:OpenGLSurfaceEvaluator::inDoEvalCoord2NOGE_BU
706 REAL u1 = global_ev_u1; local in function:OpenGLSurfaceEvaluator::inDoEvalCoord2NOGE_BV
769 REAL u1 = global_ev_u1; local in function:OpenGLSurfaceEvaluator::inDoEvalCoord2NOGE
868 inDoDomain2WithDerivsBU(int k,REAL u,REAL v,REAL u1,REAL u2,int uorder,REAL v1,REAL v2,int vorder,REAL * baseData,REAL * retPoint,REAL * retdu,REAL * retdv) argument
903 inDoDomain2WithDerivsBV(int k,REAL u,REAL v,REAL u1,REAL u2,int uorder,REAL v1,REAL v2,int vorder,REAL * baseData,REAL * retPoint,REAL * retdu,REAL * retdv) argument
949 inDoDomain2WithDerivs(int k,REAL u,REAL v,REAL u1,REAL u2,int uorder,REAL v1,REAL v2,int vorder,REAL * baseData,REAL * retPoint,REAL * retdu,REAL * retdv) argument
1756 REAL u1 = em_vertex.u1; local in function:OpenGLSurfaceEvaluator::inDoEvalCoord2EM
1940 GLfloat u1 = temp[2]; local in function:OpenGLSurfaceEvaluator::inBPMEvalEM
[all...]
H A Dincurveeval.cc122 temp_em->u1 = ulower;
142 if(em->u2 == em->u1)
144 the_uprime = (u-em->u1) / (em->u2-em->u1);
H A Dglsurfeval.cc195 OpenGLSurfaceEvaluator::mapgrid2f(long nu, REAL u0, REAL u1, long nv, REAL v0, REAL v1) argument
198 inMapGrid2f((int) nu, (REAL) u0, (REAL) u1, (int) nv,
205 global_grid_u1 = u1;
212 glMapGrid2d((GLint) nu, (GLdouble) u0, (GLdouble) u1, (GLint) nv,
981 REAL u1 = (i==global_grid_nu)? global_grid_u1:(global_grid_u0 + i*du);
988 coord2f(u1, v1);
1002 REAL u1 = (j == global_grid_nu)? global_grid_u1: (global_grid_u0 +j*du);
1003 coord2f(u1, v2);
1004 coord2f(u1, v1);
/xsrc/external/mit/libXfont/dist/src/builtins/
H A Dbuildfont9 bdftopcf -p1 -u1 $1 |
/xsrc/external/mit/libXfont2/dist/src/builtins/
H A Dbuildfont9 bdftopcf -p1 -u1 $1 |
/xsrc/external/bsd/libuuid_ul/dist/
H A Dcompare.c40 #define UUCMP(u1,u2) if (u1 != u2) return((u1 < u2) ? -1 : 1);
H A Duuid.h69 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
70 static const uuid_t name __attribute__ ((unused)) = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
72 #define UUID_DEFINE(name,u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15) \
73 static const uuid_t name = {u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,u10,u11,u12,u13,u14,u15}
/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Du_string.h162 unsigned char u1, u2; local in function:util_strcmp
165 u1 = (unsigned char) *s1++;
167 if (u1 != u2)
168 return u1 - u2;
169 if (u1 == '\0')
178 unsigned char u1, u2; local in function:util_strncmp
181 u1 = (unsigned char) *s1++;
183 if (u1 != u2)
184 return u1 - u2;
185 if (u1
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Deval.h73 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride,
76 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride,
80 GLfloat u1, GLfloat u2, GLint ustride, GLint uorder,
85 GLdouble u1, GLdouble u2, GLint ustride, GLint uorder,
102 _mesa_MapGrid1f( GLint un, GLfloat u1, GLfloat u2 );
104 _mesa_MapGrid1d( GLint un, GLdouble u1, GLdouble u2 );
106 _mesa_MapGrid2f( GLint un, GLfloat u1, GLfloat u2,
109 _mesa_MapGrid2d( GLint un, GLdouble u1, GLdouble u2,
H A Deval.c304 map1(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, argument
314 if (u1 == u2) {
315 _mesa_error( ctx, GL_INVALID_VALUE, "glMap1(u1,u2)" );
359 map->u1 = u1;
361 map->du = 1.0F / (u2 - u1);
369 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
372 map1(target, u1, u2, stride, order, points, GL_FLOAT);
377 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
380 map1(target, (GLfloat) u1, (GLfloa
385 map2(GLenum target,GLfloat u1,GLfloat u2,GLint ustride,GLint uorder,GLfloat v1,GLfloat v2,GLint vstride,GLint vorder,const GLvoid * points,GLenum type) argument
467 _mesa_Map2f(GLenum target,GLfloat u1,GLfloat u2,GLint ustride,GLint uorder,GLfloat v1,GLfloat v2,GLint vstride,GLint vorder,const GLfloat * points) argument
478 _mesa_Map2d(GLenum target,GLdouble u1,GLdouble u2,GLint ustride,GLint uorder,GLdouble v1,GLdouble v2,GLint vstride,GLint vorder,const GLdouble * points) argument
764 _mesa_MapGrid1f(GLint un,GLfloat u1,GLfloat u2) argument
781 _mesa_MapGrid1d(GLint un,GLdouble u1,GLdouble u2) argument
788 _mesa_MapGrid2f(GLint un,GLfloat u1,GLfloat u2,GLint vn,GLfloat v1,GLfloat v2) argument
815 _mesa_MapGrid2d(GLint un,GLdouble u1,GLdouble u2,GLint vn,GLdouble v1,GLdouble v2) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Deval.h73 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride,
76 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride,
80 GLfloat u1, GLfloat u2, GLint ustride, GLint uorder,
85 GLdouble u1, GLdouble u2, GLint ustride, GLint uorder,
102 _mesa_MapGrid1f( GLint un, GLfloat u1, GLfloat u2 );
104 _mesa_MapGrid1d( GLint un, GLdouble u1, GLdouble u2 );
106 _mesa_MapGrid2f( GLint un, GLfloat u1, GLfloat u2,
109 _mesa_MapGrid2d( GLint un, GLdouble u1, GLdouble u2,
H A Deval.c303 map1(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, argument
313 if (u1 == u2) {
314 _mesa_error( ctx, GL_INVALID_VALUE, "glMap1(u1,u2)" );
359 map->u1 = u1;
361 map->du = 1.0F / (u2 - u1);
369 _mesa_Map1f( GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
372 map1(target, u1, u2, stride, order, points, GL_FLOAT);
377 _mesa_Map1d( GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
380 map1(target, (GLfloat) u1, (GLfloa
385 map2(GLenum target,GLfloat u1,GLfloat u2,GLint ustride,GLint uorder,GLfloat v1,GLfloat v2,GLint vstride,GLint vorder,const GLvoid * points,GLenum type) argument
468 _mesa_Map2f(GLenum target,GLfloat u1,GLfloat u2,GLint ustride,GLint uorder,GLfloat v1,GLfloat v2,GLint vstride,GLint vorder,const GLfloat * points) argument
479 _mesa_Map2d(GLenum target,GLdouble u1,GLdouble u2,GLint ustride,GLint uorder,GLdouble v1,GLdouble v2,GLint vstride,GLint vorder,const GLdouble * points) argument
765 _mesa_MapGrid1f(GLint un,GLfloat u1,GLfloat u2) argument
783 _mesa_MapGrid1d(GLint un,GLdouble u1,GLdouble u2) argument
790 _mesa_MapGrid2f(GLint un,GLfloat u1,GLfloat u2,GLint vn,GLfloat v1,GLfloat v2) argument
818 _mesa_MapGrid2d(GLint un,GLdouble u1,GLdouble u2,GLint vn,GLdouble v1,GLdouble v2) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/glx/
H A Drender2.c44 __indirect_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
68 __GLX_PUT_DOUBLE(4, u1);
82 __GLX_PUT_DOUBLE(8, u1);
111 __indirect_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
140 __GLX_PUT_FLOAT(8, u1);
150 __GLX_PUT_FLOAT(12, u1);
174 __indirect_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustr, argument
199 __GLX_PUT_DOUBLE(4, u1);
217 __GLX_PUT_DOUBLE(8, u1);
252 __indirect_glMap2f(GLenum target, GLfloat u1, GLfloa argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/glx/
H A Drender2.c44 __indirect_glMap1d(GLenum target, GLdouble u1, GLdouble u2, GLint stride, argument
68 __GLX_PUT_DOUBLE(4, u1);
82 __GLX_PUT_DOUBLE(8, u1);
111 __indirect_glMap1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, argument
140 __GLX_PUT_FLOAT(8, u1);
150 __GLX_PUT_FLOAT(12, u1);
174 __indirect_glMap2d(GLenum target, GLdouble u1, GLdouble u2, GLint ustr, argument
199 __GLX_PUT_DOUBLE(4, u1);
217 __GLX_PUT_DOUBLE(8, u1);
252 __indirect_glMap2f(GLenum target, GLfloat u1, GLfloa argument
[all...]
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Drender2.c48 GLfloat u1, u2, *points; local in function:__glXDisp_Map1f
53 u1 = *(GLfloat *)(pc + 4);
58 CALL_Map1f( GET_DISPATCH(), (target, u1, u2, k, order, points) );
64 GLfloat u1, u2, v1, v2, *points; local in function:__glXDisp_Map2f
70 u1 = *(GLfloat *)(pc + 4);
80 CALL_Map2f( GET_DISPATCH(), (target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points) );
90 GLdouble u1, u2, *points; local in function:__glXDisp_Map1d
104 __GLX_GET_DOUBLE(u1,pc);
122 CALL_Map1d( GET_DISPATCH(), (target, u1, u2, k, order, points) );
127 GLdouble u1, u local in function:__glXDisp_Map2d
[all...]
H A Drender2swap.c48 GLfloat u1, u2, *points; local in function:__glXDispSwap_Map1f
61 u1 = *(GLfloat *)(pc + 4);
74 CALL_Map1f( GET_DISPATCH(), (target, u1, u2, k, order, points) );
80 GLfloat u1, u2, v1, v2, *points; local in function:__glXDispSwap_Map2f
97 u1 = *(GLfloat *)(pc + 4);
115 CALL_Map2f( GET_DISPATCH(), (target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points) );
122 GLdouble u1, u2, *points; local in function:__glXDispSwap_Map1d
140 __GLX_GET_DOUBLE(u1,pc);
159 CALL_Map1d( GET_DISPATCH(), (target, u1, u2, k, order, points) );
164 GLdouble u1, u local in function:__glXDispSwap_Map2d
[all...]
/xsrc/external/mit/xorg-server/dist/glx/
H A Drender2.c44 GLfloat u1, u2, *points; local in function:__glXDisp_Map1f
49 u1 = *(GLfloat *) (pc + 4);
54 glMap1f(target, u1, u2, k, order, points);
61 GLfloat u1, u2, v1, v2, *points; local in function:__glXDisp_Map2f
67 u1 = *(GLfloat *) (pc + 4);
77 glMap2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points);
89 GLdouble u1, u2, *points; local in function:__glXDisp_Map1d
104 __GLX_GET_DOUBLE(u1, pc);
123 glMap1d(target, u1, u2, k, order, points);
129 GLdouble u1, u local in function:__glXDisp_Map2d
[all...]
H A Drender2swap.c44 GLfloat u1, u2, *points; local in function:__glXDispSwap_Map1f
58 u1 = *(GLfloat *) (pc + 4);
72 glMap1f(target, u1, u2, k, order, points);
79 GLfloat u1, u2, v1, v2, *points; local in function:__glXDispSwap_Map2f
97 u1 = *(GLfloat *) (pc + 4);
116 glMap2f(target, u1, u2, ustride, uorder, v1, v2, vstride, vorder, points);
124 GLdouble u1, u2, *points; local in function:__glXDispSwap_Map1d
144 __GLX_GET_DOUBLE(u1, pc);
164 glMap1d(target, u1, u2, k, order, points);
170 GLdouble u1, u local in function:__glXDispSwap_Map2d
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl_dd/
H A Dt_dd_vertex.h57 GLfloat u1, v1; member in struct:__anonae827850040a::__anonae8278500508
66 GLfloat u1, v1, q1; member in struct:__anonae827850040a::__anonae8278500608
/xsrc/external/mit/MesaLib/dist/src/mesa/tnl_dd/
H A Dt_dd_vertex.h57 GLfloat u1, v1; member in struct:__anon12283e03040a::__anon12283e030508
66 GLfloat u1, v1, q1; member in struct:__anon12283e03040a::__anon12283e030608
/xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/
H A Drender2swap.c68 GLfloat u1, u2, *points; local in function:__glXDispSwap_Map1f
81 u1 = *(GLfloat *)(pc + 4);
99 GLfloat u1, u2, v1, v2, *points; local in function:__glXDispSwap_Map2f
116 u1 = *(GLfloat *)(pc + 4);
140 GLdouble u1, u2, *points; local in function:__glXDispSwap_Map1d
158 __GLX_GET_DOUBLE(u1,pc);
181 GLdouble u1, u2, v1, v2, *points; local in function:__glXDispSwap_Map2d
205 __GLX_GET_DOUBLE(u1,pc);
/xsrc/external/mit/xf86-video-siliconmotion/dist/src/
H A Dsmi_501.h143 int32_t u1 : bits(21, 31); member in struct:_MSOCCmdStatusRec::__anone5fa72d70208
240 int32_t u1 : bits(13, 15); member in struct:_MSOCClockRec::__anone5fa72d70308
293 int32_t u1 : bits( 8, 14); member in struct:_MSOCRegRec::__anone5fa72d7040a::__anone5fa72d70508
319 int32_t u1 : bits(13, 23); member in struct:_MSOCRegRec::__anone5fa72d7060a::__anone5fa72d70708
386 int32_t u1 : bits(15, 18); member in struct:_MSOCRegRec::__anone5fa72d70a0a::__anone5fa72d70b08
532 int32_t u1 : bits( 9, 11); member in struct:_MSOCRegRec::__anone5fa72d7140a::__anone5fa72d71508
567 int32_t u1 : bits(28, 30); member in struct:_MSOCRegRec::__anone5fa72d7160a::__anone5fa72d71708
587 int32_t u1 : bits(14, 19); member in struct:_MSOCRegRec::__anone5fa72d7180a::__anone5fa72d71908
787 int32_t u1 : bits(28, 30); member in struct:_MSOCRegRec::__anone5fa72d72c0a::__anone5fa72d72d08
807 int32_t u1 member in struct:_MSOCRegRec::__anone5fa72d72e0a::__anone5fa72d72f08
943 int32_t u1 : bits(28, 30); member in struct:_MSOCRegRec::__anone5fa72d7380a::__anone5fa72d73908
963 int32_t u1 : bits(14, 19); member in struct:_MSOCRegRec::__anone5fa72d73a0a::__anone5fa72d73b08
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/
H A Dvbo_exec_eval.c132 GLfloat uu = (u - map->u1) * map->du;
152 GLfloat uu = (u - map->u1) * map->du;
178 GLfloat uu = (u - map->u1) * map->du;
201 GLfloat uu = (u - map->u1) * map->du;

Completed in 21 milliseconds

1234