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

  /external/e2fsprogs/lib/ext2fs/
gen_crc32ctable.c 23 static uint32_t crc32table_be[BE_TABLE_ROWS][256]; variable
62 crc32table_be[0][0] = 0;
67 crc32table_be[0][i + j] = crc ^ crc32table_be[0][j];
70 crc = crc32table_be[0][i];
72 crc = crc32table_be[0][(crc >> 24) & 0xff] ^ (crc << 8);
73 crc32table_be[j][i] = crc;
100 "crc32table_be[%d][%d] = {",
102 output_table(crc32table_be, LE_TABLE_ROWS,
crc32c.c 240 return crc32_be_generic(crc, p, len, crc32table_be, CRCPOLY_BE);
    [all...]
crc32c_table.h 3 static const uint32_t crc32table_be[8][256] = {{ variable
    [all...]

Completed in 124 milliseconds