Lines Matching full:exponent
231 * [eE]<exponent>, where <exponent> is an integer as recognized by
232 * strToI. In that case the result is number * 10^exponent. After
239 GLint nDigits = 0, pointPos, exponent;
251 * digits, exponent and the end of the number. */
273 exponent = strToI (string+1, &expTail, 10);
275 exponent = 0;
279 exponent = 0;
283 scale = sign * (GLfloat)pow (10.0, (GLdouble)(pointPos-1 + exponent));