Lines Matching refs:MakeArrayLength
876 std::string MakeArrayLength(const std::string& len, Signed isSigned, int width, in MakeArrayLength() function
950 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); in TEST_P()
952 Val(CompileSuccessfully(MakeArrayLength("1", kUnsigned, width)))); in TEST_P()
954 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); in TEST_P()
956 Val(CompileSuccessfully(MakeArrayLength("2", kUnsigned, width)))); in TEST_P()
958 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); in TEST_P()
960 Val(CompileSuccessfully(MakeArrayLength("55", kUnsigned, width)))); in TEST_P()
964 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) in TEST_P()
965 << MakeArrayLength("0x7" + fpad, kSigned, width); in TEST_P()
971 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), in TEST_P()
975 Val(CompileSuccessfully(MakeArrayLength("0", kUnsigned, width)), in TEST_P()
983 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), in TEST_P()
987 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, width)), in TEST_P()
991 Val(CompileSuccessfully(MakeArrayLength("-123", kSigned, width)), in TEST_P()
996 Val(CompileSuccessfully(MakeArrayLength(neg_max, kSigned, width)), in TEST_P()
1021 const auto module = CompileSuccessfully(MakeArrayLength( in TEST_P()
1035 const auto module = CompileSuccessfully(MakeArrayLength( in TEST_P()