Lines Matching refs:crc_new
1030 uint16_t crc_new = 0; /* 16-bit CRC output */ in update_crc16_dp() local
1047 crc_new = set_u16_bit(crc_new, 15, val); in update_crc16_dp()
1052 crc_new = set_u16_bit(crc_new, 14, val); in update_crc16_dp()
1057 crc_new = set_u16_bit(crc_new, 13, val); in update_crc16_dp()
1062 crc_new = set_u16_bit(crc_new, 12, val); in update_crc16_dp()
1067 crc_new = set_u16_bit(crc_new, 11, val); in update_crc16_dp()
1072 crc_new = set_u16_bit(crc_new, 10, val); in update_crc16_dp()
1077 crc_new = set_u16_bit(crc_new, 9, val); in update_crc16_dp()
1082 crc_new = set_u16_bit(crc_new, 8, val); in update_crc16_dp()
1087 crc_new = set_u16_bit(crc_new, 7, val); in update_crc16_dp()
1092 crc_new = set_u16_bit(crc_new, 6, val); in update_crc16_dp()
1097 crc_new = set_u16_bit(crc_new, 5, val); in update_crc16_dp()
1102 crc_new = set_u16_bit(crc_new, 4, val); in update_crc16_dp()
1107 crc_new = set_u16_bit(crc_new, 3, val); in update_crc16_dp()
1112 crc_new = set_u16_bit(crc_new, 2, val); in update_crc16_dp()
1125 crc_new = set_u16_bit(crc_new, 1, val); in update_crc16_dp()
1138 crc_new = set_u16_bit(crc_new, 0, val); in update_crc16_dp()
1140 return crc_new; in update_crc16_dp()