Home
last modified time | relevance | path

Searched refs:initial (Results 1 – 25 of 42) sorted by relevance

12

/drivers/input/joystick/
A Danalog.c111 int initial[4]; member
119 static void analog_decode(struct analog *analog, int *axes, int *initial, int buttons) in analog_decode() argument
126 if (axes[3] < ((initial[3] * ((i << 1) + 1)) >> 3)) { in analog_decode()
140 input_report_key(dev, analog_pads[0], axes[2] < (initial[2] >> 1)); in analog_decode()
142 input_report_key(dev, analog_pads[1], axes[3] < (initial[3] >> 1)); in analog_decode()
144 input_report_key(dev, analog_pads[2], axes[2] > (initial[2] + (initial[2] >> 1))); in analog_decode()
146 input_report_key(dev, analog_pads[3], axes[3] > (initial[3] + (initial[3] >> 1))); in analog_decode()
276 analog_decode(port->analog + i, port->axes, port->initial, port->buttons); in analog_poll()
440 analog_decode(analog, port->axes, port->initial, port->buttons); in analog_init_device()
511 port->initial[i] = port->axes[i]; in analog_init_masks()
/drivers/crypto/
A Dpadlock-aes.c266 u32 initial = count & (ecb_fetch_blocks - 1); in padlock_xcrypt_ecb() local
273 count -= initial; in padlock_xcrypt_ecb()
275 if (initial) in padlock_xcrypt_ecb()
278 : "d"(control_word), "b"(key), "c"(initial)); in padlock_xcrypt_ecb()
288 u32 initial = count & (cbc_fetch_blocks - 1); in padlock_xcrypt_cbc() local
293 count -= initial; in padlock_xcrypt_cbc()
295 if (initial) in padlock_xcrypt_cbc()
298 : "d" (control_word), "b" (key), "c" (initial)); in padlock_xcrypt_cbc()
/drivers/pci/
A Diov.c650 u16 initial; in sriov_enable() local
663 pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial); in sriov_enable()
664 if (initial > iov->total_VFs || in sriov_enable()
665 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total_VFs))) in sriov_enable()
669 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial))) in sriov_enable()
718 iov->initial_VFs = initial; in sriov_enable()
719 if (nr_virtfn < initial) in sriov_enable()
720 initial = nr_virtfn; in sriov_enable()
722 rc = pcibios_sriov_enable(dev, initial); in sriov_enable()
735 rc = sriov_add_vfs(dev, initial); in sriov_enable()
/drivers/net/ethernet/stmicro/stmmac/
A Dstmmac_selftests.c398 struct stmmac_counters initial, final; in stmmac_test_mmc() local
401 memset(&initial, 0, sizeof(initial)); in stmmac_test_mmc()
422 if (final.mmc_tx_framecount_g <= initial.mmc_tx_framecount_g) in stmmac_test_mmc()
430 struct stmmac_extra_stats *initial, *final; in stmmac_test_eee() local
437 initial = kzalloc(sizeof(*initial), GFP_KERNEL); in stmmac_test_eee()
438 if (!initial) in stmmac_test_eee()
447 memcpy(initial, &priv->xstats, sizeof(*initial)); in stmmac_test_eee()
458 initial->irq_tx_path_in_lpi_mode_n) in stmmac_test_eee()
469 initial->irq_tx_path_in_lpi_mode_n) { in stmmac_test_eee()
475 initial->irq_tx_path_exit_lpi_mode_n) { in stmmac_test_eee()
[all …]
/drivers/connector/
A Dcn_proc.c401 int err = 0, initial = 0; in cn_proc_mcast_ctl() local
438 initial = 1; in cn_proc_mcast_ctl()
450 if (initial || (prev_mc_op != PROC_CN_MCAST_LISTEN)) in cn_proc_mcast_ctl()
454 if (!initial && (prev_mc_op != PROC_CN_MCAST_IGNORE)) in cn_proc_mcast_ctl()
/drivers/staging/gpib/
A DTODO11 - multiline comments should start with initial almost-blank line:
/drivers/net/wwan/t7xx/
A Dt7xx_hif_dpmaif_rx.c168 const bool initial) in t7xx_dpmaif_rx_buf_alloc() argument
211 if (!initial) { in t7xx_dpmaif_rx_buf_alloc()
321 const unsigned int buf_cnt, const bool initial) in t7xx_dpmaif_rx_frag_alloc() argument
379 if (!initial) in t7xx_dpmaif_rx_frag_alloc()
384 if (initial) { in t7xx_dpmaif_rx_frag_alloc()
A Dt7xx_hif_dpmaif_rx.h104 const bool initial);
/drivers/staging/media/sunxi/cedrus/
A DTODO1 This driver suffers from a bad initial design that results in various aspects
/drivers/staging/media/ipu3/
A Dipu3.h158 int imgu_queue_buffers(struct imgu_device *imgu, bool initial,
A Dipu3.c228 int imgu_queue_buffers(struct imgu_device *imgu, bool initial, unsigned int pipe) in imgu_queue_buffers() argument
319 if (initial) in imgu_queue_buffers()
/drivers/media/platform/samsung/s3c-camif/
A Dcamif-core.h106 int initial; member
/drivers/dax/
A DKconfig53 and published in the initial system-memory map as "System RAM", mapped
/drivers/scsi/aic7xxx/
A DKconfig.aic79xx43 The number of milliseconds to delay after an initial bus reset.
A DKconfig.aic7xxx48 The number of milliseconds to delay after an initial bus reset.
/drivers/net/dsa/hirschmann/
A Dhellcreek.c1582 const struct tc_taprio_sched_entry *cur, *initial, *next; in hellcreek_setup_gcl() local
1585 cur = initial = &schedule->entries[0]; in hellcreek_setup_gcl()
1593 gates = initial->gate_mask ^ in hellcreek_setup_gcl()
1617 (initial->gate_mask << in hellcreek_setup_gcl()
/drivers/clocksource/
A DKconfig397 int "ARM global timer initial prescaler value"
405 On some machs (i.e. Zynq) the initial prescaler value thus poses
407 increase wrt the initial clock value.
408 This affects CPU_FREQ max delta from the initial frequency.
/drivers/spi/
A Dspi-fsl-espi.c616 static void fsl_espi_init_regs(struct device *dev, bool initial) in fsl_espi_init_regs() argument
655 if (initial) in fsl_espi_init_regs()
/drivers/infiniband/hw/irdma/
A Dpuda.c80 struct irdma_puda_buf *buf, bool initial) in irdma_puda_post_recvbuf() argument
91 if (!initial) in irdma_puda_post_recvbuf()
116 static int irdma_puda_replenish_rq(struct irdma_puda_rsrc *rsrc, bool initial) in irdma_puda_replenish_rq() argument
126 irdma_puda_post_recvbuf(rsrc, rsrc->rx_wqe_idx, buf, initial); in irdma_puda_replenish_rq()
/drivers/scsi/megaraid/
A Dmegaraid_sas_base.c242 int initial);
2367 int initial) in megasas_get_ld_vf_affiliation_111() argument
2394 if (initial) in megasas_get_ld_vf_affiliation_111()
2423 if (initial) in megasas_get_ld_vf_affiliation_111()
2444 if (!initial) { in megasas_get_ld_vf_affiliation_111()
2501 if (initial) in megasas_get_ld_vf_affiliation_12()
2530 if (initial) in megasas_get_ld_vf_affiliation_12()
2552 if (!initial) { in megasas_get_ld_vf_affiliation_12()
2639 int initial) in megasas_get_ld_vf_affiliation() argument
2652 int initial) in megasas_sriov_start_heartbeat() argument
[all …]
/drivers/platform/mellanox/
A DKconfig96 device driver to do necessary initial swap of the boot partition.
/drivers/video/fbdev/savage/
A Dsavagefb.h195 struct savage_reg initial; member
/drivers/net/arcnet/
A DKconfig59 acknowledge back to userspace. After the initial protocol byte every
/drivers/gpu/drm/i915/
A DKconfig.profile105 May be 0 to disable the initial spin. In practice, we estimate
/drivers/usb/core/
A DKconfig65 or a host. The initial role is decided by the type of

Completed in 49 milliseconds

12