Lines Matching defs:large
1747 // Check that we can properly construct very large APInt. It is very
1795 // Test the zero case when we have a bit width large enough such
2810 // Ensure we handle large shifts of multi-word.
2834 // Ensure we handle large shifts of multi-word.
2838 // Ensure we handle large shifts of multi-word.
2842 // Ensure we handle large shifts of multi-word.
2846 // Ensure we handle large shifts of multi-word.
2879 // Ensure we handle large shifts of multi-word.
3607 APInt large(128, {0xffff, 0xffff});
3610 ASSERT_FALSE(large.tryZExtValue().has_value());
3611 ASSERT_FALSE(large.trySExtValue().has_value());
3613 ASSERT_EQ(large.trySExtValue().value_or(41), 41);