finished 64-bit compiler support
This commit is contained in:
parent
a068f910f3
commit
1e844fd1d9
1 changed files with 5 additions and 3 deletions
8
crc32.h
8
crc32.h
|
@ -74,7 +74,8 @@ static void crc_allocate_tables_once()
|
||||||
static void crc_fill_big_endian_table()
|
static void crc_fill_big_endian_table()
|
||||||
{
|
{
|
||||||
const ulong least_significant_bit = 1 << 31;
|
const ulong least_significant_bit = 1 << 31;
|
||||||
int c, i;
|
ulong c;
|
||||||
|
int i;
|
||||||
|
|
||||||
crc_allocate_tables_once();
|
crc_allocate_tables_once();
|
||||||
|
|
||||||
|
@ -87,16 +88,17 @@ static void crc_fill_big_endian_table()
|
||||||
} else {
|
} else {
|
||||||
crc_be_table[c] <<= 1;
|
crc_be_table[c] <<= 1;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
crc_be_table[c] &= 0xFFFFFFFF;
|
crc_be_table[c] &= 0xFFFFFFFF;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void crc_fill_little_endian_table()
|
static void crc_fill_little_endian_table()
|
||||||
{
|
{
|
||||||
const ulong least_significant_bit = 1;
|
const ulong least_significant_bit = 1;
|
||||||
const ulong reflected_polynomial = crc_reflect(crc_polynomial);
|
const ulong reflected_polynomial = crc_reflect(crc_polynomial);
|
||||||
int c, i;
|
ulong c;
|
||||||
|
int i;
|
||||||
|
|
||||||
crc_allocate_tables_once();
|
crc_allocate_tables_once();
|
||||||
/* printf("p: %08X\n", (int)reflected_polynomial); */
|
/* printf("p: %08X\n", (int)reflected_polynomial); */
|
||||||
|
|
Loading…
Add table
Reference in a new issue