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

Method Add

Int.cpp:84–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82// ------------------------------------------------
83
84void Int::Add(Int *a) {
85
86 unsigned char c = 0;
87 c = _addcarry_u64(c, bits64[0], a->bits64[0], bits64 +0);
88 c = _addcarry_u64(c, bits64[1], a->bits64[1], bits64 +1);
89 c = _addcarry_u64(c, bits64[2], a->bits64[2], bits64 +2);
90 c = _addcarry_u64(c, bits64[3], a->bits64[3], bits64 +3);
91 c = _addcarry_u64(c, bits64[4], a->bits64[4], bits64 +4);
92#if NB64BLOCK > 5
93 c = _addcarry_u64(c, bits64[5], a->bits64[5], bits64 +5);
94 c = _addcarry_u64(c, bits64[6], a->bits64[6], bits64 +6);
95 c = _addcarry_u64(c, bits64[7], a->bits64[7], bits64 +7);
96 c = _addcarry_u64(c, bits64[8], a->bits64[8], bits64 +8);
97#endif
98
99}
100
101// ------------------------------------------------
102

Callers 9

DivMethod · 0.45
CheckMethod · 0.45
ModInvMethod · 0.45
checkPrivKeyMethod · 0.45
getCPUStartingKeyMethod · 0.45
FindKeyCPUMethod · 0.45
getGPUStartingKeysMethod · 0.45
FindKeyGPUMethod · 0.45
reconstructAddFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected