Lines Matching defs:v
36 u32 v; in vfp_hi64to32jamming() local
180 #define vfp_single_packed_sign(v) ((v) & 0x80000000) argument
181 #define vfp_single_packed_negate(v) ((v) ^ 0x80000000) argument
182 #define vfp_single_packed_abs(v) ((v) & ~0x80000000) argument
183 #define vfp_single_packed_exponent(v) (((v) >> VFP_SINGLE_MANTISSA_BITS) & ((1 << VFP_SINGLE_EXPONE… argument
184 #define vfp_single_packed_mantissa(v) ((v) & ((1 << VFP_SINGLE_MANTISSA_BITS) - 1)) argument
289 #define vfp_double_packed_sign(v) ((v) & (1ULL << 63)) argument
290 #define vfp_double_packed_negate(v) ((v) ^ (1ULL << 63)) argument
291 #define vfp_double_packed_abs(v) ((v) & ~(1ULL << 63)) argument
292 #define vfp_double_packed_exponent(v) (((v) >> VFP_DOUBLE_MANTISSA_BITS) & ((1 << VFP_DOUBLE_EXPONE… argument
293 #define vfp_double_packed_mantissa(v) ((v) & ((1ULL << VFP_DOUBLE_MANTISSA_BITS) - 1)) argument