| 502 | } |
| 503 | |
| 504 | static void TwosComplement(word *A, unsigned int N) |
| 505 | { |
| 506 | Decrement(A, N); |
| 507 | for (unsigned i=0; i<N; i++) |
| 508 | A[i] = ~A[i]; |
| 509 | } |
| 510 | |
| 511 | |
| 512 | static word LinearMultiply(word *C, const word *A, word B, unsigned int N) |
no test coverage detected