Searched refs:new_val (Results 76 - 89 of 89) sorted by relevance

1234

/linux-master/drivers/net/wireless/intel/iwlegacy/
H A Dcommon.c3592 u16 new_val; local
3615 new_val = beacon_val / beacon_factor;
3617 if (!new_val)
3618 new_val = max_beacon_val;
3620 return new_val;
/linux-master/drivers/media/usb/uvc/
H A Duvc_driver.c1225 u8 new_val; local
1230 new_val = gpiod_get_value_cansleep(unit->gpio.gpio_privacy);
1234 uvc_ctrl_status_event(chain, unit->controls, &new_val);
/linux-master/drivers/char/ipmi/
H A Dipmi_si_intf.c342 static void smi_mod_timer(struct smi_info *smi_info, unsigned long new_val) argument
347 mod_timer(&smi_info->si_timer, new_val);
/linux-master/drivers/net/ethernet/intel/igc/
H A Digc_main.c4445 int new_val = q_vector->itr_val; local
4455 new_val = IGC_4K_ITR;
4482 new_val = avg_wire_size / 3;
4484 new_val = avg_wire_size / 2;
4487 if (new_val < IGC_20K_ITR &&
4490 new_val = IGC_20K_ITR;
4493 if (new_val != q_vector->itr_val) {
4494 q_vector->itr_val = new_val;
/linux-master/drivers/scsi/
H A Dlibiscsi.c3480 char *new_val; local
3487 new_val = kstrdup(new_val_buf, GFP_NOIO);
3488 if (!new_val)
3492 *param = new_val;
/linux-master/drivers/infiniband/hw/irdma/
H A Dctrl.c5448 * @new_val: updated counter value
5452 static inline u64 irdma_stat_delta(u64 new_val, u64 old_val, u64 max_val) argument
5454 if (new_val >= old_val)
5455 return new_val - old_val;
5458 return max_val - old_val + new_val + 1;
5478 u64 new_val = irdma_stat_val(gather_stats->val, map[i].byteoff, local
5485 irdma_stat_delta(new_val, last_val, map[i].bitmask);
/linux-master/drivers/net/ethernet/intel/igb/
H A Digb_main.c5760 int new_val = q_vector->itr_val; local
5769 new_val = IGB_4K_ITR;
5794 new_val = avg_wire_size / 3;
5796 new_val = avg_wire_size / 2;
5799 if (new_val < IGB_20K_ITR &&
5802 new_val = IGB_20K_ITR;
5805 if (new_val != q_vector->itr_val) {
5806 q_vector->itr_val = new_val;
/linux-master/include/linux/mlx4/
H A Ddevice.h1412 int set_phv_bit(struct mlx4_dev *dev, u8 port, int new_val);
/linux-master/include/linux/
H A Dfilter.h1372 void *new_val; member in struct:bpf_sysctl_kern
/linux-master/drivers/net/ethernet/mellanox/mlx4/
H A Dfw.c3062 int set_phv_bit(struct mlx4_dev *dev, u8 port, int new_val) argument
3071 ret = mlx4_SET_PORT_phv_bit(dev, port, new_val);
3073 dev->caps.phv_bit[port] = new_val;
/linux-master/block/
H A Dbfq-iosched.c7390 unsigned long new_val; local
7391 int ret = kstrtoul(page, 10, &new_val);
7395 *var = new_val;
/linux-master/fs/btrfs/
H A Dblock-group.c1762 const u64 new_val = bg->used; local
1763 const u64 old_val = new_val + bytes_freed;
1777 if (new_val >= thresh)
/linux-master/arch/x86/kvm/
H A Demulate.c3898 u64 new_val = ctxt->src.val64; local
3901 if ((dr == 6 || dr == 7) && (new_val & 0xffffffff00000000ULL))
H A Dx86.c8250 static u64 mk_cr_64(u64 curr_cr, u32 new_val) argument
8252 return (curr_cr & ~((1ULL << 32) - 1)) | new_val;

Completed in 1210 milliseconds

1234