MCPcopy Create free account
hub / github.com/Yeuoly/0xUBypass / mpn_copyi

Function mpn_copyi

WindowsShellcodeInjector/mini-gmp.cpp:342–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

340/* MPN interface */
341
342void
343mpn_copyi(mp_ptr d, mp_srcptr s, mp_size_t n)
344{
345 mp_size_t i;
346 for (i = 0; i < n; i++)
347 d[i] = s[i];
348}
349
350void
351mpn_copyd(mp_ptr d, mp_srcptr s, mp_size_t n)

Callers 6

mpn_div_qr_1Function · 0.85
mpz_setFunction · 0.85
mpz_div_q_2expFunction · 0.85
mpz_div_r_2expFunction · 0.85
mpz_sizeinbaseFunction · 0.85
mpz_get_strFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected