Lines Matching refs:asDouble
519 LLAssert(llong(llong::kD32).asDouble() == llong::kD32);
522 LLAssert(llong(0, 1).asDouble() == 1);
523 LLAssert(llong(1, 0).asDouble() == llong::kD32);
524 LLAssert(llong((uint32_t)-1, (uint32_t)-1).asDouble() == -1);
527 LLAssert(llong().asDouble() == 0);
570 LLAssert(llong((double)0).asDouble() == (double)0);
571 LLAssert(llong((double)1).asDouble() == (double)1);
572 LLAssert(llong((double)0x7fffffff).asDouble() == (double)0x7fffffff);
573 LLAssert(llong((double)0x80000000).asDouble() == (double)0x80000000);
574 LLAssert(llong((double)0x80000001).asDouble() == (double)0x80000001);
577 double maxmantissa = (llong((int32_t)1) << 40).asDouble();
578 LLAssert(llong(maxmantissa).asDouble() == maxmantissa);
579 LLAssert(llong(-maxmantissa).asDouble() == -maxmantissa);
582 LLAssert(llong(llong(0, 1)).asDouble() == 1);
583 LLAssert(llong(llong(1, 0)).asDouble() == llong::kD32);
584 LLAssert(llong(llong(-1, (uint32_t)-1)).asDouble() == -1);
930 const llong TWO_TO_32d5 = llong(TWO_TO_32.asDouble()/5.0);