Searched refs:readcheck (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/flang/unittests/Evaluate/ |
| H A D | integer.cpp | 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() [all …]
|