Home
last modified time | relevance | path

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

/xnu-8792.41.9/libkern/zlib/
H A Dz_crc32.c397 unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */ in z_crc32_combine() local
404 odd[0] = 0xedb88320L; /* CRC-32 polynomial */ in z_crc32_combine()
407 odd[n] = row; in z_crc32_combine()
412 gf2_matrix_square(even, odd); in z_crc32_combine()
415 gf2_matrix_square(odd, even); in z_crc32_combine()
421 gf2_matrix_square(even, odd); in z_crc32_combine()
431 gf2_matrix_square(odd, even); in z_crc32_combine()
433 crc1 = gf2_matrix_times(odd, crc1); in z_crc32_combine()
/xnu-8792.41.9/bsd/skywalk/packet/
H A Dpacket_copy.c211 uint8_t odd = 0; in _pkt_copyaddr_sum() local
281 odd = clen & 1u; in _pkt_copyaddr_sum()
282 clen -= odd; in _pkt_copyaddr_sum()
306 if (odd != 0) { in _pkt_copyaddr_sum()
327 sblen -= clen + odd; in _pkt_copyaddr_sum()
328 len -= clen + odd; in _pkt_copyaddr_sum()
361 uint8_t odd = 0; in _pkt_copypkt_sum() local
432 odd = clen & 1u; in _pkt_copypkt_sum()
433 clen -= odd; in _pkt_copypkt_sum()
456 if (odd != 0) { in _pkt_copypkt_sum()
[all …]
/xnu-8792.41.9/doc/
H A Drecount.md95 Writers make a generation count odd before updating any of the values and then set it back to even …