Searched refs:crc_tab (Results 1 - 4 of 4) sorted by relevance
/third_party/gptfdisk/ |
H A D | crc32.cc | 21 /* crc_tab[] -- this crcTable is being build by chksum_crc32GenTab().
25 uint32_t crc_tab[256];
variable 40 crc = ((crc >> 8) & 0x00FFFFFF) ^ crc_tab[(crc ^ *block++) & 0xFF];
in chksum_crc32() 45 /* chksum_crc32gentab() -- to a global crc_tab[256], this one will
70 crc_tab[i] = crc;
in chksum_crc32gentab()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mpegaudiodec_template.c | 371 const AVCRC *crc_tab = av_crc_get_table(AV_CRC_16_ANSI); in handle_crc() local 373 uint32_t crc_val = av_crc(crc_tab, UINT16_MAX, &buf[2], 2); in handle_crc() 374 crc_val = av_crc(crc_tab, crc_val, &buf[6], sec_byte_len); in handle_crc() 380 crc_val = av_crc(crc_tab, crc_val, tmp_buf, 3); in handle_crc()
|
H A D | apedec.c | 1626 const AVCRC *crc_tab = av_crc_get_table(AV_CRC_32_IEEE_LE); in ape_decode_frame() local 1641 crc = av_crc(crc_tab, crc, smp+offset, bytes); in ape_decode_frame()
|
H A D | pngdec.c | 1188 const AVCRC *crc_tab = av_crc_get_table(AV_CRC_32_IEEE_LE); in decode_frame_common() local 1226 uint32_t crc_cal = ~av_crc(crc_tab, UINT32_MAX, s->gb.buffer, length + 4); in decode_frame_common()
|
Completed in 10 milliseconds