MCPcopy Create free account
hub / github.com/JeanLucPons/VanitySearch / IMult

Method IMult

Int.cpp:572–582  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

570// ------------------------------------------------
571
572void Int::IMult(int64_t a) {
573
574 // Make a positive
575 if (a < 0LL) {
576 a = -a;
577 Neg();
578 }
579
580 imm_mul(bits64, a, bits64);
581
582}
583
584// ------------------------------------------------
585

Callers

nothing calls this directly

Calls 1

imm_mulFunction · 0.85

Tested by

no test coverage detected