Lines Matching refs:new_data
5127 uint64_t new_data; in ice_stat_update_32() local
5129 new_data = (uint64_t)ICE_READ_REG(hw, reg); in ice_stat_update_32()
5131 *offset = new_data; in ice_stat_update_32()
5133 if (new_data >= *offset) in ice_stat_update_32()
5134 *stat = (uint64_t)(new_data - *offset); in ice_stat_update_32()
5136 *stat = (uint64_t)((new_data + in ice_stat_update_32()
5149 uint64_t new_data; in ice_stat_update_40() local
5151 new_data = (uint64_t)ICE_READ_REG(hw, loreg); in ice_stat_update_40()
5152 new_data |= (uint64_t)(ICE_READ_REG(hw, hireg) & ICE_8_BIT_MASK) << in ice_stat_update_40()
5156 *offset = new_data; in ice_stat_update_40()
5158 if (new_data >= *offset) in ice_stat_update_40()
5159 *stat = new_data - *offset; in ice_stat_update_40()
5161 *stat = (uint64_t)((new_data + in ice_stat_update_40()