Home
last modified time | relevance | path

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

/third_party/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()
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_texture_shared_exponent.txt181 exp_shared = {
186 red_s = floor(red_c / 2^(exp_shared - B - N) + 0.5)
187 green_s = floor(green_c / 2^(exp_shared - B - N) + 0.5)
188 blue_s = floor(blue_c / 2^(exp_shared - B - N) + 0.5)
190 Then red_s, green_s, and blue_s are stored along with exp_shared in
217 The components red_s, green_s, blue_s, and exp_shared values (see
221 red = red_s * 2^(exp_shared - B)
222 green = green_s * 2^(exp_shared - B)
223 blue = blue_s * 2^(exp_shared - B)"
250 to red_s, green_s, blue_s, and exp_shared integers as described in
[all …]
/third_party/openGLES/extensions/EXT/
DEXT_texture_shared_exponent.txt181 exp_shared = {
186 red_s = floor(red_c / 2^(exp_shared - B - N) + 0.5)
187 green_s = floor(green_c / 2^(exp_shared - B - N) + 0.5)
188 blue_s = floor(blue_c / 2^(exp_shared - B - N) + 0.5)
190 Then red_s, green_s, and blue_s are stored along with exp_shared in
217 The components red_s, green_s, blue_s, and exp_shared values (see
221 red = red_s * 2^(exp_shared - B)
222 green = green_s * 2^(exp_shared - B)
223 blue = blue_s * 2^(exp_shared - B)"
250 to red_s, green_s, blue_s, and exp_shared integers as described in
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_format_convert.h429 nir_ssa_def *exp_shared = in nir_format_pack_r9g9b9e5() local
440 exp_shared); in nir_format_pack_r9g9b9e5()
463 packed = nir_mask_shift_or(b, packed, exp_shared, ~0, 27); in nir_format_pack_r9g9b9e5()