Lines Matching refs:asUInt
554 LLAssert(llong((uint16_t)0).asUInt() == (uint16_t)0);
555 LLAssert(llong((uint16_t)1).asUInt() == (uint16_t)1);
556 LLAssert(llong((uint16_t)-1).asUInt() == (uint16_t)-1);
557 LLAssert(llong((uint16_t)0x7fff).asUInt() == (uint16_t)0x7fff);
558 LLAssert(llong((uint16_t)0xffff).asUInt() == (uint16_t)0xffff);
559 LLAssert(llong((uint16_t)0x8000).asUInt() == (uint16_t)0x8000);
562 LLAssert(llong((uint32_t)0).asUInt() == (uint32_t)0);
563 LLAssert(llong((uint32_t)1).asUInt() == (uint32_t)1);
564 LLAssert(llong((uint32_t)-1).asUInt() == (uint32_t)-1);
565 LLAssert(llong((uint32_t)0x7fffffff).asUInt() == (uint32_t)0x7fffffff);
566 LLAssert(llong((uint32_t)0xffffffff).asUInt() == (uint32_t)-1);
567 LLAssert(llong((uint32_t)0x80000000).asUInt() == (uint32_t)0x80000000);
591 LLAssert(llong((int32_t)-1).asUInt() == (uint32_t)-1);
592 LLAssert(llong((int32_t)0x80000000).asUInt() == (uint32_t)0x80000000);
700 LLAssert((llong(2,3) = llong((uint32_t)-1)).asUInt() == (uint32_t)-1);
711 LLAssert((llong((int32_t)1) << 5).asUInt() == 32);