Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/gpu/drm/radeon/
Dr600_blit.c35 #define I2F_FRAC_BITS 23 macro
36 #define I2F_MASK ((1 << I2F_FRAC_BITS) - 1)
59 fraction = ror32(x, (msb - I2F_FRAC_BITS) & 0x1f) & I2F_MASK; in int2float()
60 exponent = (127 + msb) << I2F_FRAC_BITS; in int2float()