| 66 | |
| 67 | |
| 68 | uint RSCoder16::gfInv(uint a) // Inverse element in Galois field. |
| 69 | { |
| 70 | return a==0 ? 0:gfExp[gfSize-gfLog[a]]; |
| 71 | } |
| 72 | |
| 73 | |
| 74 | bool RSCoder16::Init(uint DataCount, uint RecCount, bool *ValidityFlags) |
nothing calls this directly
no outgoing calls
no test coverage detected