Lines Matching defs:out
74 _math_horner_bezier_curve(const GLfloat * cp, GLfloat * out, GLfloat t,
85 out[k] = s * cp[k] + bincoeff * t * cp[dim + k];
93 out[k] = s * out[k] + bincoeff * powert * cp[k];
99 out[k] = cp[k];
118 _math_horner_bezier_surf(GLfloat * cn, GLfloat * out, GLfloat u, GLfloat v,
153 _math_horner_bezier_curve(cp, out, v, dim, vorder);
156 _math_horner_bezier_curve(cn, out, v, dim, vorder);
173 _math_horner_bezier_curve(cp, out, u, dim, uorder);
176 _math_horner_bezier_curve(cn, out, u, dim, uorder);
195 _math_de_casteljau_surf(GLfloat * cn, GLfloat * out, GLfloat * du,
226 out[k] = us * (vs * CN(0, 0, k) + v * CN(0, 1, k)) +
263 out[k] = vs * DCN(0, 0) + v * DCN(0, 1);
299 out[k] = us * DCN(0, 0) + u * DCN(1, 0);
331 out[k] = us * (vs * DCN(0, 0) + v * DCN(0, 1)) +
386 out[k] = vs * DCN(0, 0) + v * DCN(0, 1);
441 out[k] = us * DCN(0, 0) + u * DCN(1, 0);