Lines Matching refs:MakeArrayLength
792 std::string MakeArrayLength(const std::string& len, Signed isSigned, int width, in MakeArrayLength() function
866 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); in TEST_P()
868 Val(CompileSuccessfully(MakeArrayLength("1", kUnsigned, width)))); in TEST_P()
870 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); in TEST_P()
872 Val(CompileSuccessfully(MakeArrayLength("2", kUnsigned, width)))); in TEST_P()
874 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); in TEST_P()
876 Val(CompileSuccessfully(MakeArrayLength("55", kUnsigned, width)))); in TEST_P()
880 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) in TEST_P()
881 << MakeArrayLength("0x7" + fpad, kSigned, width); in TEST_P()
887 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), in TEST_P()
891 Val(CompileSuccessfully(MakeArrayLength("0", kUnsigned, width)), in TEST_P()
899 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), in TEST_P()
903 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, width)), in TEST_P()
907 Val(CompileSuccessfully(MakeArrayLength("-123", kSigned, width)), in TEST_P()
912 Val(CompileSuccessfully(MakeArrayLength(neg_max, kSigned, width)), in TEST_P()
937 const auto module = CompileSuccessfully(MakeArrayLength( in TEST_P()
951 const auto module = CompileSuccessfully(MakeArrayLength( in TEST_P()