Home | History | Annotate | Download | only in arm

Lines Matching defs:fract

178  *  -# Compute the fractional portion (fract) of the table index.
191 * wa=-(1/6)*fract.^3 + (1/2)*fract.^2 - (1/3)*fract;
192 * wb=(1/2)*fract.^3 - fract.^2 - (1/2)*fract + 1;
193 * wc=-(1/2)*fract.^3+(1/2)*fract.^2+fract;
194 * wd=(1/6)*fract.^3 - (1/6)*fract;
212 float32_t sinVal, fract, in; /* Temporary variables for input, output */
239 fract = findex - (float32_t) index;
246 sinVal = (1.0f-fract)*a + fract*b;
267 * -# Compute the fractional portion (fract) of the table index.
280 * wa=-(1/6)*fract.^3 + (1/2)*fract.^2 - (1/3)*fract;
281 * wb=(1/2)*fract.^3 - fract.^2 - (1/2)*fract + 1;
282 * wc=-(1/2)*fract.^3+(1/2)*fract.^2+fract;
283 * wd=(1/6)*fract.^3 - (1/6)*fract;
301 float32_t cosVal, fract, in; /* Temporary variables for input, output */
328 fract = findex - (float32_t) index;
335 cosVal = (1.0f-fract)*a + fract*b;