Home
last modified time | relevance | path

Searched refs:UnsignedInt128 (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/flang/include/flang/Common/
Duint128.h28 class UnsignedInt128 {
30 constexpr UnsignedInt128() {} in UnsignedInt128() function
33 constexpr UnsignedInt128(unsigned n) : low_{n} {} in UnsignedInt128() function
34 constexpr UnsignedInt128(unsigned long n) : low_{n} {} in UnsignedInt128() function
35 constexpr UnsignedInt128(unsigned long long n) : low_{n} {} in UnsignedInt128() function
36 constexpr UnsignedInt128(int n) in UnsignedInt128() function
39 constexpr UnsignedInt128(long n) in UnsignedInt128() function
42 constexpr UnsignedInt128(long long n) in UnsignedInt128() function
45 constexpr UnsignedInt128(const UnsignedInt128 &) = default;
46 constexpr UnsignedInt128(UnsignedInt128 &&) = default;
[all …]
/external/llvm-project/flang/runtime/
Dedit-input.cpp36 common::UnsignedInt128 value{0}; in EditBOZInput()
105 common::UnsignedInt128 value; in EditIntegerInput()
/external/llvm-project/flang/unittests/Evaluate/
Duint128.cpp13 using U128 = Fortran::common::UnsignedInt128;