Lines Matching refs:INT
9 template <int BITS, typename INT = Integer<BITS>> void exhaustiveTesting() { in exhaustiveTesting()
15 "BITS=%d, PARTBITS=%d, sizeof(Part)=%d, LE=%d", BITS, INT::partBits, in exhaustiveTesting()
16 static_cast<int>(sizeof(typename INT::Part)), INT::littleEndian); in exhaustiveTesting()
18 MATCH(BITS, INT::bits)(desc); in exhaustiveTesting()
19 MATCH(maxPositiveSignedValue, INT::HUGE().ToUInt64())(desc); in exhaustiveTesting()
20 INT zero; in exhaustiveTesting()
27 INT a{x}; in exhaustiveTesting()
29 INT copy{a}; in exhaustiveTesting()
37 auto readcheck{INT::Read(p)}; in exhaustiveTesting()
43 readcheck = INT::Read(p, 16); in exhaustiveTesting()
49 readcheck = INT::Read(p); in exhaustiveTesting()
55 readcheck = INT::Read(p, 16); in exhaustiveTesting()
59 INT t{a.NOT()}; in exhaustiveTesting()
142 INT b{y}; in exhaustiveTesting()