Home
last modified time | relevance | path

Searched refs:initial (Results 1 - 25 of 93) sorted by relevance

1234

/kernel/linux/linux-5.10/drivers/crypto/
H 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()
/kernel/linux/linux-6.6/drivers/crypto/
H 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()
/kernel/linux/linux-5.10/fs/erofs/
H A Ddir.c76 bool initial = true; in erofs_readdir() local
112 if (initial) { in erofs_readdir()
113 initial = false; in erofs_readdir()
/kernel/linux/linux-6.6/fs/erofs/
H A Ddir.c59 bool initial = true; in erofs_readdir() local
85 if (initial) { in erofs_readdir()
86 initial = false; in erofs_readdir()
/kernel/linux/linux-5.10/drivers/input/joystick/
H A Danalog.c118 int initial[4]; member
186 static void analog_decode(struct analog *analog, int *axes, int *initial, int buttons) in analog_decode() argument
193 if (axes[3] < ((initial[3] * ((i << 1) + 1)) >> 3)) { in analog_decode()
207 input_report_key(dev, analog_pads[0], axes[2] < (initial[2] >> 1)); in analog_decode()
209 input_report_key(dev, analog_pads[1], axes[3] < (initial[3] >> 1)); in analog_decode()
211 input_report_key(dev, analog_pads[2], axes[2] > (initial[2] + (initial[2] >> 1))); in analog_decode()
213 input_report_key(dev, analog_pads[3], axes[3] > (initial[3] + (initial[3] >> 1))); in analog_decode()
343 analog_decode(port->analog + i, port->axes, port->initial, por in analog_poll()
[all...]
/kernel/linux/linux-6.6/drivers/input/joystick/
H 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, por in analog_poll()
[all...]
/kernel/linux/linux-5.10/drivers/pci/
H A Diov.c465 u16 initial; in sriov_enable() local
478 pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial); in sriov_enable()
479 if (initial > iov->total_VFs || in sriov_enable()
480 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total_VFs))) in sriov_enable()
484 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial))) in sriov_enable()
528 iov->initial_VFs = initial; in sriov_enable()
529 if (nr_virtfn < initial) in sriov_enable()
530 initial = nr_virtfn; in sriov_enable()
532 rc = pcibios_sriov_enable(dev, initial); in sriov_enable()
545 rc = sriov_add_vfs(dev, initial); in sriov_enable()
[all...]
/kernel/linux/linux-6.6/drivers/pci/
H A Diov.c602 u16 initial; in sriov_enable() local
615 pci_read_config_word(dev, iov->pos + PCI_SRIOV_INITIAL_VF, &initial); in sriov_enable()
616 if (initial > iov->total_VFs || in sriov_enable()
617 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (initial != iov->total_VFs))) in sriov_enable()
621 (!(iov->cap & PCI_SRIOV_CAP_VFM) && (nr_virtfn > initial))) in sriov_enable()
665 iov->initial_VFs = initial; in sriov_enable()
666 if (nr_virtfn < initial) in sriov_enable()
667 initial = nr_virtfn; in sriov_enable()
669 rc = pcibios_sriov_enable(dev, initial); in sriov_enable()
682 rc = sriov_add_vfs(dev, initial); in sriov_enable()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/stmicro/stmmac/
H 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()
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/stmicro/stmmac/
H 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()
[all...]
/kernel/linux/linux-6.6/drivers/connector/
H A Dcn_proc.c401 int err = 0, initial = 0; in cn_proc_mcast_ctl() local
405 * Events are reported with respect to the initial pid in cn_proc_mcast_ctl()
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()
/kernel/linux/linux-6.6/tools/rcu/
H A Dextract-stall.sh7 echo initial line of the stall warning but trailing-lines includes it.
/kernel/linux/linux-5.10/tools/testing/selftests/drivers/net/netdevsim/
H A Ddevlink.sh109 check_value max_macs initial 32 32
110 check_value test1 initial true Y
158 check_region_snapshot_count dummy initial 0
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdkfd/
H A Dcwsr_trap_handler_gfx9.asm339 s_mov_b32 s_save_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes) although not neccessarily inited
352 s_mov_b32 s_save_mem_offset, 0x0 //mem offset initial value = 0
420 s_mov_b32 m0, 0x0 //SGPR initial index value =0
509 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
576 s_mov_b32 m0, 0x4 //VGPR initial index value =0
620 s_mov_b32 m0, 0x0 //VGPR initial index value =0
674 s_mov_b32 s_restore_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes)
684 // s_mov_b32 s_restore_mem_offset, 0x0 //mem offset initial value = 0
713 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
750 s_mov_b32 m0, 4 //VGPR initial inde
[all...]
H A Dcwsr_trap_handler_gfx8.asm234 s_mov_b32 s_save_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes) although not neccessarily inited
247 s_mov_b32 s_save_mem_offset, 0x0 //mem offset initial value = 0
317 s_mov_b32 m0, 0x0 //SGPR initial index value =0
392 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
436 s_mov_b32 m0, 0x4 //VGPR initial index value =0
475 s_mov_b32 s_restore_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes)
485 // s_mov_b32 s_restore_mem_offset, 0x0 //mem offset initial value = 0
514 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
542 s_mov_b32 m0, 4 //VGPR initial index value = 1
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdkfd/
H A Dcwsr_trap_handler_gfx9.asm389 s_mov_b32 s_save_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes) although not neccessarily inited
396 s_mov_b32 s_save_mem_offset, 0x0 //mem offset initial value = 0
464 s_mov_b32 m0, 0x0 //SGPR initial index value =0
548 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
612 s_mov_b32 m0, 0x4 //VGPR initial index value =0
662 s_mov_b32 m0, 0x0 //VGPR initial index value =0
713 s_mov_b32 s_restore_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes)
717 // s_mov_b32 s_restore_mem_offset, 0x0 //mem offset initial value = 0
746 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
772 s_mov_b32 m0, 4 //VGPR initial inde
[all...]
H A Dcwsr_trap_handler_gfx8.asm234 s_mov_b32 s_save_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes) although not neccessarily inited
247 s_mov_b32 s_save_mem_offset, 0x0 //mem offset initial value = 0
317 s_mov_b32 m0, 0x0 //SGPR initial index value =0
392 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
436 s_mov_b32 m0, 0x4 //VGPR initial index value =0
475 s_mov_b32 s_restore_buf_rsrc2, 0 //NUM_RECORDS initial value = 0 (in bytes)
485 // s_mov_b32 s_restore_mem_offset, 0x0 //mem offset initial value = 0
514 s_mov_b32 m0, 0x0 //lds_offset initial value = 0
542 s_mov_b32 m0, 4 //VGPR initial index value = 1
/kernel/linux/linux-5.10/arch/sh/kernel/
H A Dhead_32.S83 mov r0, r15 ! Set initial r15 (stack pointer)
86 ldc r0, r7_bank ! ... and initial thread_info
91 * Reconfigure the initial PMB mappings setup by the hardware.
102 * our address space and the initial mappings may not map PAGE_OFFSET
156 * existing mappings that match the initial mappings VPN/PPN.
184 * If we've fallen through, continue with setting up the initial
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dsint.S209 clrl %d0 |clear d0 - initial g,r,s for
227 | ;if initial grs set
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dsint.S209 clrl %d0 |clear d0 - initial g,r,s for
227 | ;if initial grs set
/kernel/linux/linux-6.6/arch/sh/kernel/
H A Dhead_32.S83 mov r0, r15 ! Set initial r15 (stack pointer)
86 ldc r0, r7_bank ! ... and initial thread_info
91 * Reconfigure the initial PMB mappings setup by the hardware.
102 * our address space and the initial mappings may not map PAGE_OFFSET
156 * existing mappings that match the initial mappings VPN/PPN.
184 * If we've fallen through, continue with setting up the initial
/kernel/linux/linux-5.10/drivers/net/wireless/intersil/hostap/
H A Dhostap_hw.c1279 static int prism2_hw_init(struct net_device *dev, int initial) in prism2_hw_init() argument
1335 static int prism2_hw_init2(struct net_device *dev, int initial) in prism2_hw_init2() argument
1363 if (initial || local->pri_only) { in prism2_hw_init2()
1405 if (initial) { in prism2_hw_init2()
1433 static int prism2_hw_enable(struct net_device *dev, int initial) in prism2_hw_enable() argument
1456 if (initial && prism2_reset_port(dev)) { in prism2_hw_enable()
1472 static int prism2_hw_config(struct net_device *dev, int initial) in prism2_hw_config() argument
1483 if (prism2_hw_init(dev, initial)) { in prism2_hw_config()
1487 if (prism2_hw_init2(dev, initial)) in prism2_hw_config()
1493 (initial in prism2_hw_config()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/intersil/hostap/
H A Dhostap_hw.c1279 static int prism2_hw_init(struct net_device *dev, int initial) in prism2_hw_init() argument
1335 static int prism2_hw_init2(struct net_device *dev, int initial) in prism2_hw_init2() argument
1363 if (initial || local->pri_only) { in prism2_hw_init2()
1405 if (initial) { in prism2_hw_init2()
1436 static int prism2_hw_enable(struct net_device *dev, int initial) in prism2_hw_enable() argument
1459 if (initial && prism2_reset_port(dev)) { in prism2_hw_enable()
1475 static int prism2_hw_config(struct net_device *dev, int initial) in prism2_hw_config() argument
1486 if (prism2_hw_init(dev, initial)) { in prism2_hw_config()
1490 if (prism2_hw_init2(dev, initial)) in prism2_hw_config()
1496 (initial in prism2_hw_config()
[all...]
/kernel/linux/linux-5.10/arch/arm/mm/
H A Dtlb-v6.S41 orr r0, r3, r0, lsl #PAGE_SHIFT @ Create initial MVA
/kernel/linux/linux-6.6/arch/arm/mm/
H A Dtlb-v6.S43 orr r0, r3, r0, lsl #PAGE_SHIFT @ Create initial MVA

Completed in 25 milliseconds

1234