Home
last modified time | relevance | path

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

/Linux-v5.4/lib/raid6/
Drecov_neon_inner.c50 uint8x16_t vx, vy, px, qx, db; in __raid6_2data_recov_neon() local
53 vx = veorq_u8(vld1q_u8(q), vld1q_u8(dq)); in __raid6_2data_recov_neon()
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()
61 vx = vqtbl1q_u8(pm0, vandq_u8(px, x0f)); 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
94 vx = veorq_u8(vld1q_u8(q), vld1q_u8(dq)); in __raid6_datap_recov_neon()
[all …]
Ds390vx.uc17 asm(".include \"asm/vx-insn.h\"\n");
/Linux-v5.4/sound/pci/vx222/
Dvx222.c106 struct snd_vx222 *vx = to_vx222(chip); in snd_vx222_free() local
110 if (vx->port[0]) in snd_vx222_free()
111 pci_release_regions(vx->pci); in snd_vx222_free()
112 pci_disable_device(vx->pci); in snd_vx222_free()
129 struct snd_vx222 *vx; in snd_vx222_create() local
148 vx = to_vx222(chip); in snd_vx222_create()
149 vx->pci = pci; in snd_vx222_create()
156 vx->port[i] = pci_resource_start(pci, i + 1); in snd_vx222_create()
172 *rchip = vx; in snd_vx222_create()
183 struct snd_vx222 *vx; in snd_vx222_probe() local
[all …]
Dvx222_ops.c404 static int vx2_load_dsp(struct vx_core *vx, int index, const struct firmware *dsp) in vx2_load_dsp() argument
411 if ((err = vx2_load_xilinx_binary(vx, dsp)) < 0) in vx2_load_dsp()
413 if ((err = vx2_test_xilinx(vx)) < 0) in vx2_load_dsp()
418 return snd_vx_dsp_boot(vx, dsp); in vx2_load_dsp()
421 return snd_vx_dsp_load(vx, dsp); in vx2_load_dsp()
/Linux-v5.4/arch/mips/math-emu/
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()
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-v5.4/tools/testing/selftests/net/
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-v5.4/arch/s390/crypto/
DMakefile19 crc32-vx_s390-y := crc32-vx.o crc32le-vx.o crc32be-vx.o
/Linux-v5.4/sound/drivers/vx/
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-v5.4/tools/testing/selftests/net/forwarding/
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-v5.4/sound/pcmcia/vx/
Dvxp_ops.c233 static int vxp_load_dsp(struct vx_core *vx, int index, const struct firmware *fw) in vxp_load_dsp() argument
240 if ((err = vx_check_magic(vx)) < 0) in vxp_load_dsp()
242 if ((err = snd_vx_load_boot_image(vx, fw)) < 0) in vxp_load_dsp()
247 return vxp_load_xilinx_binary(vx, fw); in vxp_load_dsp()
250 return snd_vx_dsp_boot(vx, fw); in vxp_load_dsp()
253 return snd_vx_dsp_load(vx, fw); in vxp_load_dsp()
/Linux-v5.4/drivers/gpu/drm/bochs/
Dbochs_hw.c265 unsigned int vx, vy, vwidth; in bochs_hw_setbase() local
272 vx = (offset % bochs->stride) * 8 / bochs->bpp; in bochs_hw_setbase()
276 x, y, addr, offset, vx, vy); in bochs_hw_setbase()
278 bochs_dispi_write(bochs, VBE_DISPI_INDEX_X_OFFSET, vx); in bochs_hw_setbase()
/Linux-v5.4/sound/pcmcia/
DMakefile7 obj-$(CONFIG_SND) += vx/ pdaudiocf/
/Linux-v5.4/drivers/crypto/vmx/
Dppc-xlate.pl139 my ($f,$vx,$vy) = @_;
140 " vor $vx,$vy,$vy";
/Linux-v5.4/sound/drivers/
DMakefile26 obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ pcsp/
/Linux-v5.4/arch/s390/include/asm/
Dctl_reg.h95 unsigned long vx : 1; /* Vector enablement control */ member
/Linux-v5.4/samples/pktgen/
DREADME.rst18 Usage: ./pktgen_sample01_simple.sh [-vx] -i ethX
/Linux-v5.4/Documentation/admin-guide/
Ddevices.txt2625 0 = /dev/vx/rdsk/*/* First volume
2626 1 = /dev/vx/rdsk/*/* Second volume
2630 0 = /dev/vx/dsk/*/* First volume
2631 1 = /dev/vx/dsk/*/* Second volume
2638 0 = /dev/vx/config Configuration access node
2639 1 = /dev/vx/trace Volume i/o trace access node
2640 2 = /dev/vx/iod Volume i/o daemon access node
2641 3 = /dev/vx/info Volume information access node
2642 4 = /dev/vx/task Volume tasks access node
2643 5 = /dev/vx/taskmon Volume tasks monitor daemon
[all …]
/Linux-v5.4/arch/s390/kernel/
Dentry.S269 TSTMSK __LC_CPU_FLAGS,_CIF_FPU # load guest fp/vx registers ?
271 brasl %r14,load_fpu_regs # load guest fp/vx regs
284 jo .Lsie_skip # exit if fp/vx regs changed
/Linux-v5.4/Documentation/networking/
Dpktgen.txt238 Usage: ./pktgen_sample01_simple.sh [-vx] -i ethX
/Linux-v5.4/Documentation/networking/device_drivers/3com/
Dvortex.txt386 o If it is a PCI device, the relevant output from 'lspci -vx', eg:
/Linux-v5.4/arch/s390/tools/
Dopcodes.txt948 e76d vx VRR_VVV
/Linux-v5.4/Documentation/sound/
Dalsa-configuration.rst2397 /proc/asound/cardX/vx-status proc file.
2414 sound/pcmcia/vx/vxpocket.c. 2.6.13 or later kernel requires no