Lines Matching refs:readcheck
37 auto readcheck{INT::Read(p)}; in exhaustiveTesting() local
38 TEST(!readcheck.overflow)("%s, x=0x%llx", desc, x); in exhaustiveTesting()
39 MATCH(x, readcheck.value.ToUInt64())("%s, x=0x%llx", desc, x); in exhaustiveTesting()
43 readcheck = INT::Read(p, 16); in exhaustiveTesting()
44 TEST(!readcheck.overflow)("%s, x=0x%llx", desc, x); in exhaustiveTesting()
45 MATCH(x, readcheck.value.ToUInt64())("%s, x=0x%llx", desc, x); in exhaustiveTesting()
49 readcheck = INT::Read(p); in exhaustiveTesting()
50 TEST(!readcheck.overflow)("%s, x=0x%llx", desc, x); in exhaustiveTesting()
51 MATCH(x, readcheck.value.ToUInt64())("%s, x=0x%llx", desc, x); in exhaustiveTesting()
55 readcheck = INT::Read(p, 16); in exhaustiveTesting()
56 TEST(!readcheck.overflow)("%s, x=0x%llx", desc, x); in exhaustiveTesting()
57 MATCH(x, readcheck.value.ToUInt64())("%s, x=0x%llx", desc, x); in exhaustiveTesting()