Lines Matching refs:new_data
4695 uint64_t new_data; in ice_stat_update_32() local
4697 new_data = (uint64_t)ICE_READ_REG(hw, reg); in ice_stat_update_32()
4699 *offset = new_data; in ice_stat_update_32()
4701 if (new_data >= *offset) in ice_stat_update_32()
4702 *stat = (uint64_t)(new_data - *offset); in ice_stat_update_32()
4704 *stat = (uint64_t)((new_data + in ice_stat_update_32()
4717 uint64_t new_data; in ice_stat_update_40() local
4719 new_data = (uint64_t)ICE_READ_REG(hw, loreg); in ice_stat_update_40()
4720 new_data |= (uint64_t)(ICE_READ_REG(hw, hireg) & ICE_8_BIT_MASK) << in ice_stat_update_40()
4724 *offset = new_data; in ice_stat_update_40()
4726 if (new_data >= *offset) in ice_stat_update_40()
4727 *stat = new_data - *offset; in ice_stat_update_40()
4729 *stat = (uint64_t)((new_data + in ice_stat_update_40()