Home
last modified time | relevance | path

Searched refs:temp_length (Results 1 – 1 of 1) sorted by relevance

/bsp/samd21/sam_d2x_asflib/common/services/crc32/
A Dcrc32.c129 size_t temp_length; in crc32_recalculate() local
135 temp_length = length; in crc32_recalculate()
137 temp_length = ~WORD_ALIGNMENT_MASK & (WORD_SIZE - (uintptr_t)data); in crc32_recalculate()
140 if (temp_length) { in crc32_recalculate()
141 length -= temp_length; in crc32_recalculate()
144 word >>= 8 * (WORD_SIZE - temp_length); in crc32_recalculate()
149 temp_length = length & WORD_ALIGNMENT_MASK; in crc32_recalculate()
151 if (temp_length) { in crc32_recalculate()
152 length -= temp_length; in crc32_recalculate()
153 temp_length /= WORD_SIZE; in crc32_recalculate()
[all …]

Completed in 9 milliseconds