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

Method ShiftL

Int.cpp:490–501  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

488// ------------------------------------------------
489
490void Int::ShiftL(uint32_t n) {
491
492 if( n<64 ) {
493 shiftL((unsigned char)n, bits64);
494 } else {
495 uint32_t nb64 = n/64;
496 uint32_t nb = n%64;
497 for(uint32_t i=0;i<nb64;i++) ShiftL64Bit();
498 shiftL((unsigned char)nb, bits64);
499 }
500
501}
502
503// ------------------------------------------------
504

Callers 3

DivMethod · 0.80
getCPUStartingKeyMethod · 0.80
getGPUStartingKeysMethod · 0.80

Calls 1

shiftLFunction · 0.85

Tested by

no test coverage detected