HomeSort by relevance Sort by last modified time
    Searched refs:crc_tab (Results 1 - 4 of 4) sorted by null

  /external/gptfdisk/
crc32.h 20 extern unsigned int crc_tab[256];
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];
45 /* chksum_crc32gentab() -- to a global crc_tab[256], this one will
70 crc_tab[i] = crc;
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Drivers/OemNicConfig2PHi1610/
OemNicConfig2P.c 48 UINT16 crc_tab[256] = { variable
99 StartCRC = crc_tab[((UINT8)((StartCRC >> 8) & 0xff)) ^ *(buf++)] ^ ((UINT16)(StartCRC << 8));
  /external/syslinux/utils/
isohybrid.c 90 uint32_t crc_tab[256] = variable
773 crc = ((crc >> 8) & 0x00FFFFFF) ^ crc_tab[(crc ^ *block++) & 0xFF];

Completed in 192 milliseconds