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