Home | History | Annotate | Download | only in src

Lines Matching refs:ieee

59   /* This is the IEEE 854 double-extended-precision format.  */
66 } ieee;
326 /* IEEE representation */
452 * IEEE Double Precision Format
482 template <class D, class IEEE, int M, int BIAS>
559 * IEEE Double Precision Format
577 IEEE v;
579 v.ieee.mantissa0 = vv.i32.hi;
580 v.ieee.mantissa1 = vv.i32.lo;
581 v.ieee.negative = 0;
582 v.ieee.exponent = bexp + BIAS - 1;
622 IEEE v;
624 v.ieee.mantissa0 = 0;
625 v.ieee.mantissa1 = 0;
626 v.ieee.negative = 0;
627 v.ieee.exponent = 1;
633 IEEE v;
635 v.ieee.mantissa0 = vv.i32.hi;
636 v.ieee.mantissa1 = vv.i32.lo;
637 v.ieee.negative = 0;
638 v.ieee.exponent = 0;
748 template <class D, class IEEE, int M, int BIAS>
837 x = _Stl_atodT<D,IEEE,M,BIAS>(digits, n, exp);