MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / operator/

Function operator/

extern/int128/absl/numeric/int128.cc:142–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140
141#if !defined(ABSL_HAVE_INTRINSIC_INT128)
142uint128 operator/(uint128 lhs, uint128 rhs) {
143 uint128 quotient = 0;
144 uint128 remainder = 0;
145 DivModImpl(lhs, rhs, &quotient, &remainder);
146 return quotient;
147}
148
149uint128 operator%(uint128 lhs, uint128 rhs) {
150 uint128 quotient = 0;

Callers

nothing calls this directly

Calls 8

DivModImplFunction · 0.85
assertClass · 0.85
Int128MinFunction · 0.85
UnsignedAbsoluteValueFunction · 0.85
MakeInt128Function · 0.85
BitCastToSignedFunction · 0.85
Uint128High64Function · 0.70
Uint128Low64Function · 0.70

Tested by

no test coverage detected