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

Method Neg

Int.cpp:432–447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

430// ------------------------------------------------
431
432void Int::Neg() {
433
434 unsigned char c=0;
435 c = _subborrow_u64(c, 0, bits64[0], bits64 + 0);
436 c = _subborrow_u64(c, 0, bits64[1], bits64 + 1);
437 c = _subborrow_u64(c, 0, bits64[2], bits64 + 2);
438 c = _subborrow_u64(c, 0, bits64[3], bits64 + 3);
439 c = _subborrow_u64(c, 0, bits64[4], bits64 + 4);
440#if NB64BLOCK > 5
441 c = _subborrow_u64(c, 0, bits64[5], bits64 + 5);
442 c = _subborrow_u64(c, 0, bits64[6], bits64 + 6);
443 c = _subborrow_u64(c, 0, bits64[7], bits64 + 7);
444 c = _subborrow_u64(c, 0, bits64[8], bits64 + 8);
445#endif
446
447}
448
449// ------------------------------------------------
450

Callers 6

GetBitLengthMethod · 0.80
GCDMethod · 0.80
GetBaseNMethod · 0.80
ModInvMethod · 0.80
checkPrivKeyMethod · 0.80
reconstructAddFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected