Lines Matching refs:int4_helper
891 IntegerOperandTryEncodeShiftedIntHelper<4> int4_helper; in TEST() local
896 int4_helper.TestEncodable<0>(-8, z0.VnH(), -8); in TEST()
897 int4_helper.TestEncodable<0>(-7, z0.VnH(), -7); in TEST()
898 int4_helper.TestEncodable<0>(-1, z0.VnS(), -1); in TEST()
899 int4_helper.TestEncodable<0>(0, z0.VnD(), 0); in TEST()
900 int4_helper.TestEncodable<0>(1, z0.VnB(), 1); in TEST()
901 int4_helper.TestEncodable<0>(7, z0.VnH(), 7); in TEST()
931 int4_helper.TestEncodable<1>(UINT8_MAX ^ 0x1, z0.VnB(), -1); in TEST()
932 int4_helper.TestEncodable<2>(UINT16_MAX ^ 0x3, z0.VnH(), -1); in TEST()
933 int4_helper.TestEncodable<3>(UINT32_MAX ^ 0x7, z0.VnS(), -1); in TEST()
934 int4_helper.TestEncodable<4>(UINT64_MAX ^ 0xf, z0.VnD(), -1); in TEST()
941 int4_helper.TestUnencodable<0>(0x10, z0.VnB()); in TEST()
942 int4_helper.TestUnencodable<1>(0x20, z0.VnB()); in TEST()