Home
last modified time | relevance | path

Searched defs:Int64 (Results 1 – 1 of 1) sorted by relevance

/CTR-SDK-0.14.4/include/nn/util/
Dutil_Int64.h28 struct Int64 struct
32 Int64() {} in Int64() function
33 Int64(Base s) : lo(static_cast<bit32>(s)), hi(static_cast<bit32>(s >> 32)) {} in Int64() argument
35 Int64& operator++() { Base lhs = *this; lhs++; *this = lhs; return *this; } argument
36 Int64& operator--() { Base lhs = *this; lhs--; *this = lhs; return *this; } argument
37 Int64& operator+=(Base rhs) { Base lhs = *this; lhs += rhs; *this = lhs; return *this; } argument
38 Int64& operator-=(Base rhs) { Base lhs = *this; lhs -= rhs; *this = lhs; return *this; } argument
39 Int64& operator*=(Base rhs) { Base lhs = *this; lhs *= rhs; *this = lhs; return *this; } argument
40 Int64& operator/=(Base rhs) { Base lhs = *this; lhs /= rhs; *this = lhs; return *this; } argument
41 Int64& operator%=(Base rhs) { Base lhs = *this; lhs %= rhs; *this = lhs; return *this; } argument
[all …]