Lines Matching defs:CRCConfig
151 public struct CRCConfig struct
153 public CRCConfig(uint polynomial, int width, bool reflectInput, bool reflectOutput, in CRCConfig() argument
159 public CRCConfig(CRCPolynomial crcPolynomial, bool reflectInput, bool reflectOutput, in CRCConfig() method
171 public CRCPolynomial CRCPolynomial { get; }
172 public bool ReflectInput { get; }
173 public bool ReflectOutput { get; }
174 public uint Init { get; }
175 public uint XorOutput { get; }
177 public uint Polynomial => CRCPolynomial.Polynomial;
179 public int Width => CRCPolynomial.Width;
181 public const int MaxCRCWidth = 32;