Lines Matching refs:f11
112 GLuint f11;
122 /* f32 NaN -> f11 NaN */
125 f11 = (GLuint)(FLOAT11_MAX_BIASED_EXP) | (GLuint)(0x0000003F);
130 f11 = 0x00000000;
133 return f11;
150 f11 = (GLuint)(FLOAT11_MAX_BIASED_EXP) | (GLuint)(mantissa >> 17);
166 f11 = mantissa;
170 f11 = ((exp - FLOAT11_MIN_BIASED_EXP_AS_SINGLE_FP_EXP) >> 17) | (mantissa >> 17);
173 return f11;
308 float unsignedF11ToFloat(GLuint f11)
310 unsigned int mantissa = (unsigned int)(f11 & ((1 << 6) - 1));
311 unsigned int exp = (unsigned int)(f11 & FLOAT11_MAX_BIASED_EXP);
319 /* we have a f11 NaN or Inf */
320 /* f11 NaNs will be converted to a single precision NaN */
321 /* f11 Infs will be converted to a single precision Inf */
328 /* convert f11 zero/denorm to single precision value */
369 /* we have a f11 NaN or Inf */
370 /* f11 NaNs will be converted to a single precision NaN */
371 /* f11 Infs will be converted to a single precision Inf */
378 /* convert f11 zero/denorm to single precision value */