Searched refs:temp_length (Results 1 – 1 of 1) sorted by relevance
129 size_t temp_length; in crc32_recalculate() local135 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