| 60 | |
| 61 | |
| 62 | uint RSCoder16::gfMul(uint a,uint b) // Multiplication in Galois field. |
| 63 | { |
| 64 | return gfExp[gfLog[a]+gfLog[b]]; |
| 65 | } |
| 66 | |
| 67 | |
| 68 | uint RSCoder16::gfInv(uint a) // Inverse element in Galois field. |
nothing calls this directly
no outgoing calls
no test coverage detected