Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 88 of file crc32.c.
Referenced by FindBitmapResource(), FstubReadHeaderEFI(), FstubWriteEntryEFI(), FstubWriteHeaderEFI(), IopGetParentIdPrefix(), and IoReadDiskSignature().
{ ULONG CrcValue = ~Initial; DPRINT("(%d,%p,%d)\n", Initial, Data, Length); while (Length > 0) { CrcValue = CrcTable[(CrcValue ^ *Data) & 0xff] ^ (CrcValue >> 8); Data++; Length--; } return ~CrcValue; }