Home
last modified time | relevance | path

Searched refs:exp_shared (Results 1 – 2 of 2) 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()
/external/mesa3d/src/compiler/nir/
Dnir_format_convert.h407 nir_ssa_def *exp_shared = in nir_format_pack_r9g9b9e5() local
418 exp_shared); in nir_format_pack_r9g9b9e5()
441 packed = nir_mask_shift_or(b, packed, exp_shared, ~0, 27); in nir_format_pack_r9g9b9e5()