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

Method Sub

Int.cpp:327–342  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

325// ------------------------------------------------
326
327void Int::Sub(Int *a) {
328
329 unsigned char c = 0;
330 c = _subborrow_u64(c, bits64[0], a->bits64[0], bits64 +0);
331 c = _subborrow_u64(c, bits64[1], a->bits64[1], bits64 +1);
332 c = _subborrow_u64(c, bits64[2], a->bits64[2], bits64 +2);
333 c = _subborrow_u64(c, bits64[3], a->bits64[3], bits64 +3);
334 c = _subborrow_u64(c, bits64[4], a->bits64[4], bits64 +4);
335#if NB64BLOCK > 5
336 c = _subborrow_u64(c, bits64[5], a->bits64[5], bits64 +5);
337 c = _subborrow_u64(c, bits64[6], a->bits64[6], bits64 +6);
338 c = _subborrow_u64(c, bits64[7], a->bits64[7], bits64 +7);
339 c = _subborrow_u64(c, bits64[8], a->bits64[8], bits64 +8);
340#endif
341
342}
343
344// ------------------------------------------------
345

Callers 9

IsGreaterOrEqualMethod · 0.80
GCDMethod · 0.80
CheckMethod · 0.80
ModAddMethod · 0.80
ModDoubleMethod · 0.80
ModInvMethod · 0.80
MontgomeryMultMethod · 0.80
ModPositiveK1Method · 0.80
ModMulK1orderMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected