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

Method getText

src/common/BigInteger.cpp:193–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191 }
192
193 void BigInteger::getText(string& str, unsigned int radix) const
194 {
195 int size;
196 CHECK_MP(mp_radix_size(const_cast<mp_int*>(&t), radix, &size));
197 str.resize(size - 1, ' ');
198 CHECK_MP(mp_toradix(const_cast<mp_int*>(&t), str.begin(), radix));
199 }
200
201 BigInteger BigInteger::modPow(const BigInteger& pow, const BigInteger& mod) const
202 {

Callers 11

genClientKeyMethod · 0.45
genServerKeyMethod · 0.45
dumpItFunction · 0.45
authenticateMethod · 0.45
executeMethod · 0.45
runTestFunction · 0.45
authenticateMethod · 0.45
logRecordErrorMethod · 0.45
log_event_dyn_executeMethod · 0.45

Calls 4

mp_radix_sizeFunction · 0.85
mp_toradixFunction · 0.85
resizeMethod · 0.45
beginMethod · 0.45

Tested by 1

runTestFunction · 0.36