Home | History | Annotate | Download | only in native

Lines Matching defs:mantissa

568   uint64_t mantissa, test64;
587 mantissa = *arg << highBit;
589 CREATE_DOUBLE_BITS (mantissa, -highBit);
594 mantissa = *arg >> highBit;
596 CREATE_DOUBLE_BITS (mantissa, highBit);
600 if (test > 0x400 || ((test == 0x400) && (mantissa & 1)))
612 mantissa =
618 mantissa = arg[length];
621 CREATE_DOUBLE_BITS (mantissa, length * 64 - highBit);
625 if (test64 > SIGN_MASK || ((test64 == SIGN_MASK) && (mantissa & 1)))
643 mantissa = arg[length] >> highBit;
645 CREATE_DOUBLE_BITS (mantissa, length * 64 + highBit);
649 if (test > 0x400 || ((test == 0x400) && (mantissa & 1)))