Home | History | Annotate | Download | only in math

Lines Matching refs:bincoeff

77    GLfloat s, powert, bincoeff;
81 bincoeff = (GLfloat) (order - 1);
85 out[k] = s * cp[k] + bincoeff * t * cp[dim + k];
89 bincoeff *= (GLfloat) (order - i);
90 bincoeff *= inv_tab[i];
93 out[k] = s * out[k] + bincoeff * powert * cp[k];
126 GLfloat s, poweru, bincoeff;
135 bincoeff = (GLfloat) (uorder - 1);
139 cp[j * dim + k] = s * ucp[k] + bincoeff * u * ucp[uinc + k];
143 bincoeff *= (GLfloat) (uorder - i);
144 bincoeff *= inv_tab[i];
148 s * cp[j * dim + k] + bincoeff * poweru * ucp[k];