Home
last modified time | relevance | path

Searched refs:vx (Results 1 – 25 of 29) sorted by relevance

12

/linux/lib/raid6/
A Drecov_neon_inner.c50 uint8x16_t vx, vy, px, qx, db; in __raid6_2data_recov_neon() local
55 vy = vshrq_n_u8(vx, 4); in __raid6_2data_recov_neon()
56 vx = vqtbl1q_u8(qm0, vandq_u8(vx, x0f)); in __raid6_2data_recov_neon()
58 qx = veorq_u8(vx, vy); in __raid6_2data_recov_neon()
63 vx = veorq_u8(vx, vy); in __raid6_2data_recov_neon()
64 db = veorq_u8(vx, qx); in __raid6_2data_recov_neon()
92 uint8x16_t vx, vy; in __raid6_datap_recov_neon() local
96 vy = vshrq_n_u8(vx, 4); in __raid6_datap_recov_neon()
97 vx = vqtbl1q_u8(qm0, vandq_u8(vx, x0f)); in __raid6_datap_recov_neon()
99 vx = veorq_u8(vx, vy); in __raid6_datap_recov_neon()
[all …]
A Ds390vx.uc17 asm(".include \"asm/vx-insn.h\"\n");
/linux/sound/pci/vx222/
A Dvx222.c108 struct snd_vx222 *vx; in snd_vx222_create() local
123 vx = to_vx222(chip); in snd_vx222_create()
124 vx->pci = pci; in snd_vx222_create()
140 *rchip = vx; in snd_vx222_create()
152 struct snd_vx222 *vx; in snd_vx222_probe() local
182 card->private_data = vx; in snd_vx222_probe()
183 vx->core.ibl.size = ibl[dev]; in snd_vx222_probe()
186 card->shortname, vx->port[0], vx->port[1], vx->core.irq); in snd_vx222_probe()
188 card->shortname, vx->port[0], vx->port[1], vx->core.irq); in snd_vx222_probe()
191 vx->core.dev = &pci->dev; in snd_vx222_probe()
[all …]
A Dvx222_ops.c404 static int vx2_load_dsp(struct vx_core *vx, int index, const struct firmware *dsp) in vx2_load_dsp() argument
411 err = vx2_load_xilinx_binary(vx, dsp); in vx2_load_dsp()
414 err = vx2_test_xilinx(vx); in vx2_load_dsp()
420 return snd_vx_dsp_boot(vx, dsp); in vx2_load_dsp()
423 return snd_vx_dsp_load(vx, dsp); in vx2_load_dsp()
/linux/arch/mips/math-emu/
A Dsp_cmp.c14 int vx; in ieee754sp_cmp() local
32 vx = x.bits; in ieee754sp_cmp()
35 if (vx < 0) in ieee754sp_cmp()
36 vx = -vx ^ SP_SIGN_BIT; in ieee754sp_cmp()
40 if (vx < vy) in ieee754sp_cmp()
42 else if (vx == vy) in ieee754sp_cmp()
A Ddp_cmp.c14 s64 vx; in ieee754dp_cmp() local
32 vx = x.bits; in ieee754dp_cmp()
35 if (vx < 0) in ieee754dp_cmp()
36 vx = -vx ^ DP_SIGN_BIT; in ieee754dp_cmp()
40 if (vx < vy) in ieee754dp_cmp()
42 else if (vx == vy) in ieee754dp_cmp()
/linux/tools/testing/selftests/net/
A Dtest_vxlan_fdb_changelink.sh9 local N=$(bridge fdb sh dev vx | grep 00:00:00:00:00:00 | wc -l)
20 ip link add name vx up type vxlan id 2000 dstport 4789
21 bridge fdb ap dev vx 00:00:00:00:00:00 dst 192.0.2.20 self permanent
22 bridge fdb ap dev vx 00:00:00:00:00:00 dst 192.0.2.30 self permanent
25 ip link set dev vx type vxlan remote 192.0.2.30
28 ip link del dev vx
/linux/arch/x86/kvm/
A Dxen.c86 vx->last_steal = run_delay; in kvm_xen_update_runstate()
88 vx->runstate_times[vx->current_runstate] += delta_ns; in kvm_xen_update_runstate()
89 vx->current_runstate = state; in kvm_xen_update_runstate()
90 vx->runstate_entry_time = now; in kvm_xen_update_runstate()
101 if (!vx->runstate_set) in kvm_xen_update_runstate_guest()
148 sizeof(vx->current_runstate)); in kvm_xen_update_runstate_guest()
150 sizeof(vx->current_runstate)); in kvm_xen_update_runstate_guest()
153 &vx->current_runstate, in kvm_xen_update_runstate_guest()
169 sizeof(vx->runstate_times)); in kvm_xen_update_runstate_guest()
172 &vx->runstate_times[0], in kvm_xen_update_runstate_guest()
[all …]
/linux/sound/drivers/vx/
A D.built-in.a.cmd1vx/built-in.a := echo >/dev/null; rm -f sound/drivers/vx/built-in.a; /usr/bin/ccache /home/test/wo…
A DMakefile7 snd-vx-lib-objs := vx_core.o vx_hwdep.o vx_pcm.o vx_mixer.o vx_cmd.o vx_uer.o
9 obj-$(CONFIG_SND_VX_LIB) += snd-vx-lib.o
/linux/sound/pcmcia/vx/
A D.built-in.a.cmd1vx/built-in.a := echo >/dev/null; rm -f sound/pcmcia/vx/built-in.a; /usr/bin/ccache /home/test/wor…
A Dvxp_ops.c233 static int vxp_load_dsp(struct vx_core *vx, int index, const struct firmware *fw) in vxp_load_dsp() argument
240 err = vx_check_magic(vx); in vxp_load_dsp()
243 err = snd_vx_load_boot_image(vx, fw); in vxp_load_dsp()
249 return vxp_load_xilinx_binary(vx, fw); in vxp_load_dsp()
252 return snd_vx_dsp_boot(vx, fw); in vxp_load_dsp()
255 return snd_vx_dsp_load(vx, fw); in vxp_load_dsp()
/linux/arch/s390/crypto/
A DMakefile19 crc32-vx_s390-y := crc32-vx.o crc32le-vx.o crc32be-vx.o
/linux/tools/testing/selftests/net/forwarding/
A Dvxlan_bridge_1q.sh711 local vx=vx$vid
729 bridge fdb show brport $vx | grep $mac | grep -q self
731 bridge fdb show brport $vx | grep $mac | grep "vlan $vid" \
749 bridge fdb del dev $vx $mac master self vlan $vid
764 bridge fdb show brport $vx | grep $mac | grep -q self
766 bridge fdb show brport $vx | grep $mac | grep "vlan $vid" \
775 bridge fdb show brport $vx | grep $mac | grep -q self
777 bridge fdb show brport $vx | grep $mac | grep "vlan $vid" \
790 ip link set dev $vx type bridge_slave learning off
796 bridge fdb show brport $vx | grep $mac | grep "vlan $vid" \
[all …]
/linux/drivers/crypto/vmx/
A Dppc-xlate.pl139 my ($f,$vx,$vy) = @_;
140 " vor $vx,$vy,$vy";
/linux/sound/pcmcia/
A DMakefile7 obj-$(CONFIG_SND) += vx/ pdaudiocf/
A D.built-in.a.cmd1 …rch64/bin/aarch64-linux-gnu-ar cDPrST sound/pcmcia/built-in.a sound/pcmcia/vx/built-in.a sound/pcm…
/linux/drivers/gpu/drm/tiny/
A Dbochs.c384 unsigned int vx, vy, vwidth, idx; in bochs_hw_setbase() local
394 vx = (offset % bochs->stride) * 8 / bochs->bpp; in bochs_hw_setbase()
398 x, y, addr, offset, vx, vy); in bochs_hw_setbase()
400 bochs_dispi_write(bochs, VBE_DISPI_INDEX_X_OFFSET, vx); in bochs_hw_setbase()
/linux/sound/drivers/
A D.built-in.a.cmd1 …ound/drivers/opl4/built-in.a sound/drivers/mpu401/built-in.a sound/drivers/vx/built-in.a sound/dri…
A DMakefile24 obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ pcsp/
/linux/arch/s390/include/asm/
A Dctl_reg.h94 unsigned long vx : 1; /* Vector enablement control */ member
/linux/samples/pktgen/
A DREADME.rst18 Usage: ./pktgen_sample01_simple.sh [-vx] -i ethX
/linux/arch/s390/kernel/
A Dnmi.c290 cr0.afp = cr0.vx = 1; in s390_validate_registers()
A Dentry.S263 jo .Lsie_skip # exit if fp/vx regs changed
/linux/Documentation/admin-guide/
A Ddevices.txt2616 0 = /dev/vx/rdsk/*/* First volume
2617 1 = /dev/vx/rdsk/*/* Second volume
2621 0 = /dev/vx/dsk/*/* First volume
2622 1 = /dev/vx/dsk/*/* Second volume
2629 0 = /dev/vx/config Configuration access node
2631 2 = /dev/vx/iod Volume i/o daemon access node
2633 4 = /dev/vx/task Volume tasks access node
2637 0 = /dev/vx/rdmp/* First multipath device
2638 1 = /dev/vx/rdmp/* Second multipath device
2641 0 = /dev/vx/dmp/* First multipath device
[all …]

Completed in 54 milliseconds

12