Home
last modified time | relevance | path

Searched refs:ToUInt64 (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/flang/unittests/Evaluate/
H A Dinteger.cpp22 MATCH(0, zero.ToUInt64())(desc); in exhaustiveTesting()
28 MATCH(x, a.ToUInt64())(desc); in exhaustiveTesting()
30 MATCH(x, copy.ToUInt64())(desc); in exhaustiveTesting()
32 MATCH(x, copy.ToUInt64())(desc); in exhaustiveTesting()
125 MATCH(x >> count, t.ToUInt64()) in exhaustiveTesting()
192 x * y, (product.upper.ToUInt64() << BITS) ^ product.lower.ToUInt64()) in exhaustiveTesting()
194 product.lower.ToUInt64(), product.upper.ToUInt64()); in exhaustiveTesting()
205 MATCH(0, quot.remainder.ToUInt64()) in exhaustiveTesting()
226 MATCH(0, quot.remainder.ToUInt64()) in exhaustiveTesting()
229 MATCH(x, quot.quotient.ToUInt64()) in exhaustiveTesting()
[all …]
H A Dreal.cpp61 MATCH(0, zero.RawBits().ToUInt64())(desc); in basicTests()
78 MATCH(0, vr.value.RawBits().ToUInt64())(desc); in basicTests()
135 MATCH(x, ix.ToUInt64())(ldesc); in basicTests()
150 MATCH(x, ivf.value.ToUInt64())(ldesc); in basicTests()
161 MATCH(x, icheck.value.ToUInt64())(ldesc); in basicTests()
171 MATCH(x, ix.ToUInt64())(ldesc); in basicTests()
187 MATCH(x, ivf.value.ToUInt64())(ldesc); in basicTests()
306 UINT check = real.value.RawBits().ToUInt64(); in inttest()
388 UINT check = aint.value.RawBits().ToUInt64(); in subsetTests()
404 UINT check = root.value.RawBits().ToUInt64(); in subsetTests()
[all …]
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DStringConvert.h19 uint64_t ToUInt64(const char *s, uint64_t fail_value = 0, int base = 0,
H A DStringConvert.cpp31 uint64_t ToUInt64(const char *s, uint64_t fail_value, int base, in ToUInt64() function
H A DJSON.cpp561 uint64_t uval = StringConvert::ToUInt64(value.c_str(), 0, 0, &success); in ParseJSONValue()
/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dinteger.h282 std::uint64_t field{that.ToUInt64()}; in ConvertUnsigned()
288 field = that.SHIFTR(j).ToUInt64(); in ConvertUnsigned()
318 char digit = '0' + ToUInt64(); in UnsignedDecimal()
324 char digit = '0' + qr.remainder.ToUInt64(); in UnsignedDecimal()
347 char nybble = IBITS(pos, 4).ToUInt64(); in Hexadecimal()
486 constexpr std::uint64_t ToUInt64() const { return ToUInt<std::uint64_t>(); } in ToUInt64() function
H A Dreal.h337 return word_.IBITS(significandBits, exponentBits).ToUInt64(); in Exponent()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dfold-character.cpp60 return CharacterUtils<KIND>::CHAR(i.ToUInt64()); in FoldIntrinsicFunction()