Lines Matching refs:asInt
432 LLAssert(llong((int32_t)0).asInt() == (int32_t)0);
433 LLAssert(llong((int32_t)1).asInt() == (int32_t)1);
434 LLAssert(llong((int32_t)-1).asInt() == (int32_t)-1);
435 LLAssert(llong((int32_t)0x7fffffff).asInt() == (int32_t)0x7fffffff);
436 LLAssert(llong((int32_t)0xffffffff).asInt() == (int32_t)-1);
437 LLAssert(llong((int32_t)0x80000000).asInt() == (int32_t)0x80000000);
440 LLAssert(llong((int16_t)0).asInt() == (int16_t)0);
441 LLAssert(llong((int16_t)1).asInt() == (int16_t)1);
442 LLAssert(llong((int16_t)-1).asInt() == (int16_t)-1);
443 LLAssert(llong((int16_t)0x7fff).asInt() == (int16_t)0x7fff);
444 LLAssert(llong((int16_t)0xffff).asInt() == (int16_t)0xffff);
445 LLAssert(llong((int16_t)0x8000).asInt() == (int16_t)0x8000);
448 LLAssert(llong((int8_t)0).asInt() == (int8_t)0);
449 LLAssert(llong((int8_t)1).asInt() == (int8_t)1);
450 LLAssert(llong((int8_t)-1).asInt() == (int8_t)-1);
451 LLAssert(llong((int8_t)0x7f).asInt() == (int8_t)0x7f);
452 LLAssert(llong((int8_t)0xff).asInt() == (int8_t)0xff);
453 LLAssert(llong((int8_t)0x80).asInt() == (int8_t)0x80);
489 LLAssert(llong((uint32_t)-1).asInt() == (int32_t)0x7fffffff);
490 LLAssert(llong(-1, 0).asInt() == (int32_t)0x80000000);