Searched defs:make_float64 (Results 1 - 1 of 1) sorted by relevance

/external/qemu/fpu/
H A Dsoftfloat.h136 #define make_float64(x) __extension__ ({ float64 f64_val = {x}; f64_val; }) macro
147 #define make_float64(x) (x) macro
464 return make_float64(float64_val(a) & 0x7fffffffffffffffLL);
472 return make_float64(float64_val(a) ^ 0x8000000000000000LL);
497 return make_float64((float64_val(a) & 0x7fffffffffffffffULL)
501 #define float64_zero make_float64(0)
502 #define float64_one make_float64(0x3ff0000000000000LL)
503 #define float64_ln2 make_float64(0x3fe62e42fefa39efLL)
504 #define float64_pi make_float64(0x400921fb54442d18LL)
505 #define float64_half make_float64(
[all...]

Completed in 105 milliseconds