HomeSort by: relevance | last modified time | path
    Searched defs:crc0 (Results 1 - 3 of 3) sorted by relevancy

  /src/common/dist/zlib/
crc32.c 736 z_crc_t crc0; local in function:crc32_z
760 crc0 = crc;
783 word0 = crc0 ^ words[0];
803 crc0 = crc_braid_table[0][word0 & 0xff];
820 crc0 ^= crc_braid_table[k][(word0 >> (k << 3)) & 0xff];
843 crc = crc_word(crc0 ^ words[0]);
864 z_word_t crc0, word0, comb; local in function:crc32_z
882 crc0 = byte_swap(crc);
905 word0 = crc0 ^ words[0];
925 crc0 = crc_braid_big_table[0][word0 & 0xff]
    [all...]
  /src/sys/dev/bluetooth/
bcsp.c 817 uint16_t crc0; local in function:bcsp_pktintegrity_receive
830 m_copydata(_m, n, sizeof(crc0), &crc0);
831 if (be16toh(crc0) != bcsp_crc_reverse(crc)) {
bth5.c 861 uint16_t crc0; local in function:bth5_pktintegrity_receive
874 m_copydata(_m, n, sizeof(crc0), &crc0);
875 if (be16toh(crc0) != bth5_crc_reverse(crc)) {

Completed in 14 milliseconds