Scribus
Open source desktop publishing at your fingertips
crc32::b8< crc > Struct Template Reference

Public Types

enum  {
  b1 = (crc & 1) ? (poly ^ (crc >> 1)) : (crc >> 1), b2 = (b1 & 1) ? (poly ^ (b1 >> 1)) : (b1 >> 1), b3 = (b2 & 1) ? (poly ^ (b2 >> 1)) : (b2 >> 1), b4 = (b3 & 1) ? (poly ^ (b3 >> 1)) : (b3 >> 1),
  b5 = (b4 & 1) ? (poly ^ (b4 >> 1)) : (b4 >> 1), b6 = (b5 & 1) ? (poly ^ (b5 >> 1)) : (b5 >> 1), b7 = (b6 & 1) ? (poly ^ (b6 >> 1)) : (b6 >> 1), res = (b7 & 1) ? (poly ^ (b7 >> 1)) : (b7 >> 1)
}
 

The documentation for this struct was generated from the following file: