Home
last modified time | relevance | path

Searched refs:exp_shared (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/util/
Dformat_rgb9e5.h62 int rm, gm, bm, exp_shared; in float3_to_rgb9e5() local
77 exp_shared = MAX2((maxrgb.u >> 23), -RGB9E5_EXP_BIAS - 1 + 127) + in float3_to_rgb9e5()
79 revdenom_biasedexp = 127 - (exp_shared - RGB9E5_EXP_BIAS - in float3_to_rgb9e5()
82 assert(exp_shared <= RGB9E5_MAX_VALID_BIASED_EXP); in float3_to_rgb9e5()
104 return (exp_shared << 27) | (bm << 18) | (gm << 9) | rm; in float3_to_rgb9e5()