ether_crc32_le_update
return ether_crc32_le_update(0xffffffff, buf, len);
crc = ether_crc32_le_update(crc, mtod(m, caddr_t) + moff, len);
crc = ether_crc32_le_update(crc, mic, IEEE80211_TKIP_MICLEN);
crc = ether_crc32_le_update(crc, mtod(n, caddr_t) + noff, len);
crc = ether_crc32_le_update(crc, mic0, IEEE80211_TKIP_MICLEN);
crc = ether_crc32_le_update(crc, mtod(m, caddr_t) + moff, len);
crc = ether_crc32_le_update(crc, mtod(n, caddr_t) + noff, len);
u_int32_t ether_crc32_le_update(u_int32_t crc, const u_int8_t *, size_t);