| 488 | // ------------------------------------------------ |
| 489 | |
| 490 | void 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 |
no test coverage detected