Searched refs:crc (Results 1 - 1 of 1) sorted by relevance

/gem5/src/base/
H A Dcrc.hh48 * The crc is accomplished by reversing the input, the initial value
52 * @param crc: Initial value of the checksum
59 crc32(const uint8_t* data, uint32_t crc, std::size_t size) argument
63 crc = reverseBits(crc);
70 if ((int)(crc ^ byte) < 0) {
71 crc = (crc << 1) ^ Poly;
73 crc = crc <<
[all...]

Completed in 4 milliseconds