carry             835 net/if_ethersubr.c 	u_int32_t c, crc, carry;
carry             843 net/if_ethersubr.c 			carry = ((crc & 0x01) ? 1 : 0) ^ (c & 0x01);
carry             846 net/if_ethersubr.c 			if (carry)
carry             857 net/if_ethersubr.c 	u_int32_t c, crc, carry;
carry             865 net/if_ethersubr.c 			carry = ((crc & 0x80000000U) ? 1 : 0) ^ (c & 0x01);
carry             868 net/if_ethersubr.c 			if (carry)
carry             869 net/if_ethersubr.c 				crc = (crc ^ ETHER_CRC_POLY_BE) | carry;