Home | History | Annotate | Download | only in include

Lines Matching full:mantissa

2026  * frexp: Binary mantissa and exponent
2028 * Returns the binary mantissa and exponent of v, i.e. v == mantissa * 2 ^ exponent.
2030 * The mantissa is always between 0.5 (inclusive) and 1.0 (exclusive).
2199 * Returns the base two exponent of a value, where the mantissa is between
2204 * Because of the difference in mantissa, this number is one less than is returned by frexp().
2241 * ldexp: Creates a floating point from mantissa and exponent
2243 * Returns the floating point created from the mantissa and exponent,
2244 * i.e. (mantissa * 2 ^ exponent).
2249 * mantissa: Mantissa.
2253 ldexp(float mantissa, int exponent);
2256 ldexp(float2 mantissa, int2 exponent);
2259 ldexp(float3 mantissa, int3 exponent);
2262 ldexp(float4 mantissa, int4 exponent);
2266 ldexp(half mantissa, int exponent);
2271 ldexp(half2 mantissa, int2 exponent);
2276 ldexp(half3 mantissa, int3 exponent);
2281 ldexp(half4 mantissa, int4 exponent);
2285 ldexp(float2 mantissa, int exponent);
2288 ldexp(float3 mantissa, int exponent);
2291 ldexp(float4 mantissa, int exponent);
2295 ldexp(half2 mantissa, int exponent);
2300 ldexp(half3 mantissa, int exponent);
2305 ldexp(half4 mantissa, int exponent);
2542 * Returns the base two exponent of a value, where the mantissa is between
2547 * Because of the difference in mantissa, this number is one less than is returned by frexp().