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

  /external/avb/libavb/
avb_crc32.c 49 static uint32_t crc32_tab[] = { variable
107 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);
  /external/vboot_reference/firmware/lib/cgptlib/
crc32.c 46 static uint32_t crc32_tab[] = { variable
109 value = crc32_tab[(value ^ byte[i]) & 0xff] ^ (value >> 8);
  /system/core/libsparse/
sparse_crc32.c 48 static uint32_t crc32_tab[] = { variable
108 crc = crc32_tab[(crc ^ *p++) & 0xFF] ^ (crc >> 8);

Completed in 3298 milliseconds