Home
last modified time | relevance | path

Searched refs:dataCRC (Results 1 – 1 of 1) sorted by relevance

/external/toybox/toys/other/
Dbzcat.c76 unsigned int dataCRC, headerCRC; member
479 bw->dataCRC = 0xffffffffL; in burrows_wheeler_prep()
567 bw->dataCRC = (bw->dataCRC << 8) in write_bunzip_data()
568 ^ bd->crc32Table[(bw->dataCRC >> 24) ^ outbyte]; in write_bunzip_data()
574 bw->dataCRC = ~(bw->dataCRC); in write_bunzip_data()
575 bd->totalCRC = ((bd->totalCRC << 1) | (bd->totalCRC >> 31)) ^ bw->dataCRC; in write_bunzip_data()
578 if (bw->dataCRC != bw->headerCRC) { in write_bunzip_data()