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

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DPrepare.cpp64 uint32 CRC = 0xFFFFFFFF; local
77 CRC = (CRC >> 8) ^ CRC32_TABLE[(CRC & 0xFF) ^ *pRawData++];
78 CRC = (CRC >> 8) ^ CRC32_TABLE[(CRC & 0xFF) ^ *pRawData++];
96 CRC = (CRC >> 8) ^ CRC32_TABLE[(CRC
363 uint32 CRC = 0xFFFFFFFF; local
[all...]
/haiku/src/apps/serialconnect/
H A DXModem.h34 uint16_t CRC(const uint8_t* buffer, size_t size);
H A DXModem.cpp68 // A 'C' to request the first block is a request to use a CRC
72 fStatus = B_TRANSLATE("CRC requested");
137 uint16_t crc = CRC(fBuffer, kBlockSize);
172 uint16_t XModemSender::CRC(const uint8_t *buf, size_t len) function in class:XModemSender
/haiku/src/bin/unzip/
H A Dcrctab.c9 /* crctab.c -- supply the CRC table needed for CRC-32 calculations.
17 Generate a table for a byte-wise 32-bit CRC calculation on the polynomial:
25 byte 0xb1 is the polynomial x^7+x^3+x+1), then the CRC is (q*x^32) mod p,
36 The table is simply the CRC of all possible eight bit values. This is all
37 the information needed to generate CRC's on data a byte at a time for all
38 combinations of CRC register values and incoming bytes.
61 error: Dynamic allocation of CRC table not safe with reentrant code.
140 * Table of CRC-32's of all single-byte values (made by make_crc_table)

Completed in 87 milliseconds