Lines Matching refs:asUInt
550 LLAssert(llong((uint16_t)0).asUInt() == (uint16_t)0);
551 LLAssert(llong((uint16_t)1).asUInt() == (uint16_t)1);
552 LLAssert(llong((uint16_t)-1).asUInt() == (uint16_t)-1);
553 LLAssert(llong((uint16_t)0x7fff).asUInt() == (uint16_t)0x7fff);
554 LLAssert(llong((uint16_t)0xffff).asUInt() == (uint16_t)0xffff);
555 LLAssert(llong((uint16_t)0x8000).asUInt() == (uint16_t)0x8000);
558 LLAssert(llong((uint32_t)0).asUInt() == (uint32_t)0);
559 LLAssert(llong((uint32_t)1).asUInt() == (uint32_t)1);
560 LLAssert(llong((uint32_t)-1).asUInt() == (uint32_t)-1);
561 LLAssert(llong((uint32_t)0x7fffffff).asUInt() == (uint32_t)0x7fffffff);
562 LLAssert(llong((uint32_t)0xffffffff).asUInt() == (uint32_t)-1);
563 LLAssert(llong((uint32_t)0x80000000).asUInt() == (uint32_t)0x80000000);
587 LLAssert(llong((int32_t)-1).asUInt() == (uint32_t)-1);
588 LLAssert(llong((int32_t)0x80000000).asUInt() == (uint32_t)0x80000000);
696 LLAssert((llong(2,3) = llong((uint32_t)-1)).asUInt() == (uint32_t)-1);
707 LLAssert((llong((int32_t)1) << 5).asUInt() == 32);