| 1100 | } |
| 1101 | |
| 1102 | void Int::ModAddK1order(Int *a, Int *b) { |
| 1103 | Add(a,b); |
| 1104 | Sub(_O); |
| 1105 | if (IsNegative()) |
| 1106 | Add(_O); |
| 1107 | } |
| 1108 | |
| 1109 | void Int::ModMulK1order(Int *a) { |
| 1110 |
nothing calls this directly
no outgoing calls
no test coverage detected