crcspeed icon indicating copy to clipboard operation
crcspeed copied to clipboard

crc16speed.c

Open XRay3D opened this issue 5 years ago • 0 comments

static uint16_t crc16_table_little[8][256] = {{0}};
static uint16_t crc16_table_big[8][256] = {{0}};

Я бы хранил уже посчитанные

static constexpr uint16_t crc16_table_little[][256]{
    {...},
};
static constexpr uint16_t crc16_table_big[][256]{
    {...},
};

XRay3D avatar Nov 25 '20 10:11 XRay3D