Searched defs:Int64 (Results 1 – 1 of 1) sorted by relevance
28 struct Int64 struct32 Int64() {} in Int64() function33 Int64(Base s) : lo(static_cast<bit32>(s)), hi(static_cast<bit32>(s >> 32)) {} in Int64() argument35 Int64& operator++() { Base lhs = *this; lhs++; *this = lhs; return *this; } argument36 Int64& operator--() { Base lhs = *this; lhs--; *this = lhs; return *this; } argument37 Int64& operator+=(Base rhs) { Base lhs = *this; lhs += rhs; *this = lhs; return *this; } argument38 Int64& operator-=(Base rhs) { Base lhs = *this; lhs -= rhs; *this = lhs; return *this; } argument39 Int64& operator*=(Base rhs) { Base lhs = *this; lhs *= rhs; *this = lhs; return *this; } argument40 Int64& operator/=(Base rhs) { Base lhs = *this; lhs /= rhs; *this = lhs; return *this; } argument41 Int64& operator%=(Base rhs) { Base lhs = *this; lhs %= rhs; *this = lhs; return *this; } argument[all …]