Home | History | Annotate | Download | only in src

Lines Matching refs:crc

46     uint32 *crc,            memory location holding calculated crc value
47 uint32 crc_enabled flag to enable/disable crc checking
56 uint32 length, number of element upon the crc will be calculated
57 uint32 *crc, memory location holding calculated crc value
125 uint32 *crc,
132 calculate_crc(bits, neededBits, crc);
143 uint32 *crc)
150 carry = *crc & 0x8000;
151 *crc <<= 1;
154 *crc ^= CRC16_POLYNOMIAL;
157 *crc &= 0xffff;