QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::integers128::uint128 Union Reference

An unsigned 128 bit value. More...

#include "uint128.hpp"

Classes

struct  empty_type
 

Public Member Functions

constexpr uint128 () noexcept
 Default constructor, no bits set.
 
constexpr uint128 (uint64_t v) noexcept
 Construct from a number.
 
constexpr uint128 (uint8_t v0, uint8_t v1, uint8_t v2, uint8_t v3, uint8_t v4, uint8_t v5, uint8_t v6, uint8_t v7, uint8_t v8, uint8_t v9, uint8_t v10, uint8_t v11, uint8_t v12, uint8_t v13, uint8_t v14, uint8_t v15) noexcept
 Construct from input.
 
constexpr uint128 (uint16_t v0, uint16_t v1, uint16_t v2, uint16_t v3, uint16_t v4, uint16_t v5, uint16_t v6, uint16_t v7) noexcept
 Construct from input.
 
constexpr uint128 (uint32_t v0, uint32_t v1, uint32_t v2, uint32_t v3) noexcept
 Construct from input.
 
constexpr uint128 (uint64_t v0, uint64_t v1) noexcept
 Construct from input.
 
 operator unsigned short () const noexcept
 Return the bottom unsigned short bits of the number.
 
 operator unsigned () const noexcept
 Return the bottom unsigned bits of the number.
 
 operator unsigned long () const noexcept
 Return the bottom long bits of the number.
 
 operator unsigned long long () const noexcept
 Return the bottom long long bits of the number.
 
 operator bool () const noexcept
 
bool operator! () const noexcept
 
uint128 operator+ (const uint128 &v) const noexcept
 
uint128 operator+= (const uint128 &v) noexcept
 
uint128 operator- (const uint128 &v) const noexcept
 
uint128 operator-= (const uint128 &v) noexcept
 
uint128 operator% (const uint128 &v) const noexcept
 
uint128 operator%= (const uint128 &b)
 
uint128 operator<< (uint8_t v) const noexcept
 
uint128 operator<<= (uint8_t v) noexcept
 
uint128 operator>> (uint8_t v) const noexcept
 
uint128 operator>>= (uint8_t v) noexcept
 
bool operator== (const uint128 &o) const noexcept
 
bool operator!= (const uint128 &o) const noexcept
 
bool operator< (const uint128 &o) const noexcept
 
bool operator<= (const uint128 &o) const noexcept
 
bool operator> (const uint128 &o) const noexcept
 
bool operator>= (const uint128 &o) const noexcept
 

Public Attributes

struct quickcpplib::_xxx::integers128::uint128::empty_type _empty
 
uint8_t as_bytes [16]
 
uint16_t as_shorts [8]
 
uint32_t as_ints [4]
 
uint64_t as_longlongs [2]
 

Detailed Description

An unsigned 128 bit value.

Constructor & Destructor Documentation

◆ uint128() [1/6]

constexpr quickcpplib::_xxx::integers128::uint128::uint128 ( )
inlineconstexprnoexcept

Default constructor, no bits set.

64 : _empty()
65 {
66 }
struct quickcpplib::_xxx::integers128::uint128::empty_type _empty

◆ uint128() [2/6]

constexpr quickcpplib::_xxx::integers128::uint128::uint128 ( uint64_t  v)
inlineconstexprnoexcept

Construct from a number.

69 : as_longlongs{v, 0}
70 {
71 }
uint64_t as_longlongs[2]
Definition uint128.hpp:54

◆ uint128() [3/6]

constexpr quickcpplib::_xxx::integers128::uint128::uint128 ( uint8_t  v0,
uint8_t  v1,
uint8_t  v2,
uint8_t  v3,
uint8_t  v4,
uint8_t  v5,
uint8_t  v6,
uint8_t  v7,
uint8_t  v8,
uint8_t  v9,
uint8_t  v10,
uint8_t  v11,
uint8_t  v12,
uint8_t  v13,
uint8_t  v14,
uint8_t  v15 
)
inlineconstexprnoexcept

Construct from input.

76 : as_bytes{v0, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15}
77 {
78 }
uint8_t as_bytes[16]
Definition uint128.hpp:51

◆ uint128() [4/6]

constexpr quickcpplib::_xxx::integers128::uint128::uint128 ( uint16_t  v0,
uint16_t  v1,
uint16_t  v2,
uint16_t  v3,
uint16_t  v4,
uint16_t  v5,
uint16_t  v6,
uint16_t  v7 
)
inlineconstexprnoexcept

Construct from input.

82 : as_shorts{v0, v1, v2, v3, v4, v5, v6, v7}
83 {
84 }
uint16_t as_shorts[8]
Definition uint128.hpp:52

◆ uint128() [5/6]

constexpr quickcpplib::_xxx::integers128::uint128::uint128 ( uint32_t  v0,
uint32_t  v1,
uint32_t  v2,
uint32_t  v3 
)
inlineconstexprnoexcept

Construct from input.

87 : as_ints{v0, v1, v2, v3}
88 {
89 }
uint32_t as_ints[4]
Definition uint128.hpp:53

◆ uint128() [6/6]

constexpr quickcpplib::_xxx::integers128::uint128::uint128 ( uint64_t  v0,
uint64_t  v1 
)
inlineconstexprnoexcept

Construct from input.

92 : as_longlongs{v0, v1}
93 {
94 }

Member Function Documentation

◆ operator unsigned short()

quickcpplib::_xxx::integers128::uint128::operator unsigned short ( ) const
inlineexplicitnoexcept

Return the bottom unsigned short bits of the number.

96{ return static_cast<unsigned short>(as_longlongs[0]); }

◆ operator unsigned()

quickcpplib::_xxx::integers128::uint128::operator unsigned ( ) const
inlineexplicitnoexcept

Return the bottom unsigned bits of the number.

98{ return static_cast<unsigned>(as_longlongs[0]); }

◆ operator unsigned long()

quickcpplib::_xxx::integers128::uint128::operator unsigned long ( ) const
inlineexplicitnoexcept

Return the bottom long bits of the number.

100{ return static_cast<unsigned long>(as_longlongs[0]); }

◆ operator unsigned long long()

quickcpplib::_xxx::integers128::uint128::operator unsigned long long ( ) const
inlineexplicitnoexcept

Return the bottom long long bits of the number.

102{ return static_cast<unsigned long long>(as_longlongs[0]); }

◆ operator bool()

quickcpplib::_xxx::integers128::uint128::operator bool ( ) const
inlineexplicitnoexcept
112{ return (*this) != _allbitszero(); }

◆ operator!()

bool quickcpplib::_xxx::integers128::uint128::operator! ( ) const
inlinenoexcept
113{ return (*this) == _allbitszero(); }

◆ operator+()

uint128 quickcpplib::_xxx::integers128::uint128::operator+ ( const uint128 v) const
inlinenoexcept
121 {
122 uint128 t(*this);
123 t += v;
124 return t;
125 }
constexpr uint128() noexcept
Default constructor, no bits set.
Definition uint128.hpp:63

◆ operator+=()

uint128 quickcpplib::_xxx::integers128::uint128::operator+= ( const uint128 v)
inlinenoexcept
127 {
128#if(defined(__GNUC__) || defined(__clang__)) && __SIZEOF_INT128__ > 0
129 as_uint128 += v.as_uint128;
130 return *this;
131#endif
132 auto o = as_longlongs[0];
133 as_longlongs[0] += v.as_longlongs[0];
134 as_longlongs[1] += v.as_longlongs[1];
135 as_longlongs[1] += (as_longlongs[0] < o);
136 return *this;
137 }

◆ operator-()

uint128 quickcpplib::_xxx::integers128::uint128::operator- ( const uint128 v) const
inlinenoexcept
139 {
140 uint128 t(*this);
141 t -= v;
142 return t;
143 }

◆ operator-=()

uint128 quickcpplib::_xxx::integers128::uint128::operator-= ( const uint128 v)
inlinenoexcept
145 {
146#if(defined(__GNUC__) || defined(__clang__)) && __SIZEOF_INT128__ > 0
147 as_uint128 -= v.as_uint128;
148 return *this;
149#endif
150 auto o = as_longlongs[0];
151 as_longlongs[0] -= v.as_longlongs[0];
152 as_longlongs[1] -= v.as_longlongs[1];
153 as_longlongs[1] -= (as_longlongs[0] > o);
154 return *this;
155 }

◆ operator%()

uint128 quickcpplib::_xxx::integers128::uint128::operator% ( const uint128 v) const
inlinenoexcept
161 {
162 uint128 t(*this);
163 t %= v;
164 return t;
165 }

◆ operator%=()

uint128 quickcpplib::_xxx::integers128::uint128::operator%= ( const uint128 b)
inline
172 {
173 if(!b)
174#ifdef __cpp_exceptions
175 throw std::domain_error("divide by zero");
176#else
177 abort();
178#endif
179#if(defined(__GNUC__) || defined(__clang__)) && __SIZEOF_INT128__ > 0
180 as_uint128 %= b.as_uint128;
181 return *this;
182#endif
183
184 uint128 x(b), y(*this >> 1);
185 while(x <= y)
186 {
187 x <<= 1;
188 }
189 while(*this >= b)
190 {
191 if(*this >= x)
192 *this -= x;
193 x >>= 1;
194 }
195 return *this;
196 }

◆ operator<<()

uint128 quickcpplib::_xxx::integers128::uint128::operator<< ( uint8_t  v) const
inlinenoexcept
245 {
246 uint128 t(*this);
247 t <<= v;
248 return t;
249 }

◆ operator<<=()

uint128 quickcpplib::_xxx::integers128::uint128::operator<<= ( uint8_t  v)
inlinenoexcept
251 {
252#if(defined(__GNUC__) || defined(__clang__)) && __SIZEOF_INT128__ > 0
253 as_uint128 <<= v;
254 return *this;
255#endif
256 as_longlongs[1] <<= v;
257 as_longlongs[1] |= as_longlongs[0] >> (64 - v);
258 as_longlongs[0] <<= v;
259 return *this;
260 }

◆ operator>>()

uint128 quickcpplib::_xxx::integers128::uint128::operator>> ( uint8_t  v) const
inlinenoexcept
262 {
263 uint128 t(*this);
264 t >>= v;
265 return t;
266 }

◆ operator>>=()

uint128 quickcpplib::_xxx::integers128::uint128::operator>>= ( uint8_t  v)
inlinenoexcept
268 {
269#if(defined(__GNUC__) || defined(__clang__)) && __SIZEOF_INT128__ > 0
270 as_uint128 >>= v;
271 return *this;
272#endif
273 as_longlongs[0] >>= v;
274 as_longlongs[0] |= as_longlongs[1] << (64 - v);
275 as_longlongs[1] >>= v;
276 return *this;
277 }

◆ operator==()

bool quickcpplib::_xxx::integers128::uint128::operator== ( const uint128 o) const
inlinenoexcept
280 {
281 return as_longlongs[1] == o.as_longlongs[1] && as_longlongs[0] == o.as_longlongs[0];
282 }

◆ operator!=()

bool quickcpplib::_xxx::integers128::uint128::operator!= ( const uint128 o) const
inlinenoexcept
284 {
285 return as_longlongs[1] != o.as_longlongs[1] || as_longlongs[0] != o.as_longlongs[0];
286 }

◆ operator<()

bool quickcpplib::_xxx::integers128::uint128::operator< ( const uint128 o) const
inlinenoexcept
288 {
289 return as_longlongs[1] < o.as_longlongs[1] ||
290 (as_longlongs[1] == o.as_longlongs[1] && as_longlongs[0] < o.as_longlongs[0]);
291 }

◆ operator<=()

bool quickcpplib::_xxx::integers128::uint128::operator<= ( const uint128 o) const
inlinenoexcept
293 {
294 return as_longlongs[1] < o.as_longlongs[1] ||
295 (as_longlongs[1] == o.as_longlongs[1] && as_longlongs[0] <= o.as_longlongs[0]);
296 }

◆ operator>()

bool quickcpplib::_xxx::integers128::uint128::operator> ( const uint128 o) const
inlinenoexcept
298 {
299 return as_longlongs[1] > o.as_longlongs[1] ||
300 (as_longlongs[1] == o.as_longlongs[1] && as_longlongs[0] > o.as_longlongs[0]);
301 }

◆ operator>=()

bool quickcpplib::_xxx::integers128::uint128::operator>= ( const uint128 o) const
inlinenoexcept
303 {
304 return as_longlongs[1] > o.as_longlongs[1] ||
305 (as_longlongs[1] == o.as_longlongs[1] && as_longlongs[0] >= o.as_longlongs[0]);
306 }

Member Data Documentation

◆ _empty

struct quickcpplib::_xxx::integers128::uint128::empty_type quickcpplib::_xxx::integers128::uint128::_empty

◆ as_bytes

uint8_t quickcpplib::_xxx::integers128::uint128::as_bytes[16]

◆ as_shorts

uint16_t quickcpplib::_xxx::integers128::uint128::as_shorts[8]

◆ as_ints

uint32_t quickcpplib::_xxx::integers128::uint128::as_ints[4]

◆ as_longlongs

uint64_t quickcpplib::_xxx::integers128::uint128::as_longlongs[2]

The documentation for this union was generated from the following file: