| 472 | // ------------------------------------------------ |
| 473 | |
| 474 | void Int::ShiftL64Bit() { |
| 475 | |
| 476 | for (int i = NB64BLOCK-1 ; i>0; i--) { |
| 477 | bits64[i] = bits64[i - 1]; |
| 478 | } |
| 479 | bits64[0] = 0; |
| 480 | |
| 481 | } |
| 482 | |
| 483 | // ------------------------------------------------ |
| 484 |
nothing calls this directly
no outgoing calls
no test coverage detected