Home
last modified time | relevance | path

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

/CTR-SDK-0.14.4/include/nn/util/
Dutil_Int64.h35 Int64& operator++() { Base lhs = *this; lhs++; *this = lhs; return *this; } member
36 Int64& operator--() { Base lhs = *this; lhs--; *this = lhs; return *this; } member
37 Int64& operator+=(Base rhs) { Base lhs = *this; lhs += rhs; *this = lhs; return *this; } member
38 Int64& operator-=(Base rhs) { Base lhs = *this; lhs -= rhs; *this = lhs; return *this; } member
39 Int64& operator*=(Base rhs) { Base lhs = *this; lhs *= rhs; *this = lhs; return *this; } member
40 Int64& operator/=(Base rhs) { Base lhs = *this; lhs /= rhs; *this = lhs; return *this; } member
41 Int64& operator%=(Base rhs) { Base lhs = *this; lhs %= rhs; *this = lhs; return *this; } member
42 Int64& operator|=(Base rhs) { Base lhs = *this; lhs |= rhs; *this = lhs; return *this; } member
43 Int64& operator&=(Base rhs) { Base lhs = *this; lhs &= rhs; *this = lhs; return *this; } member
44 Int64& operator^=(Base rhs) { Base lhs = *this; lhs ^= rhs; *this = lhs; return *this; } member
[all …]