Home | History | Annotate | Download | only in Utils

Lines Matching refs:Fraction

900   uint64_t Fraction = Bits & FracMask;
906 // This translates to: only 4 bits of fraction; -3 <= exp <= 4.
910 // Are there too many fraction bits?
911 if (Fraction & ~(A64FracMask << A64FracStart))
917 uint32_t PackedFraction = (Fraction >> A64FracStart) & A64FracMask;