| 461 | // ------------------------------------------------ |
| 462 | |
| 463 | void Int::ShiftL32Bit() { |
| 464 | |
| 465 | for(int i=NB32BLOCK-1;i>0;i--) { |
| 466 | bits[i]=bits[i-1]; |
| 467 | } |
| 468 | bits[0]=0; |
| 469 | |
| 470 | } |
| 471 | |
| 472 | // ------------------------------------------------ |
| 473 |
nothing calls this directly
no outgoing calls
no test coverage detected