Home
last modified time | relevance | path

Searched refs:vs2 (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoV.td336 // indexed load vd, (rs1), vs2, vm
340 (ins GPRMemZeroOffset:$rs1, VR:$vs2, VMaskOp:$vm), opcodestr,
341 "$vd, $rs1, $vs2$vm">;
362 // indexed segment load vd, (rs1), vs2, vm
367 (ins GPRMemZeroOffset:$rs1, VR:$vs2, VMaskOp:$vm), opcodestr,
368 "$vd, $rs1, $vs2$vm">;
400 // indexed store vd, vs3, (rs1), vs2, vm
403 (ins VR:$vs3, GPRMemZeroOffset:$rs1, VR:$vs2, VMaskOp:$vm),
404 opcodestr, "$vs3, $rs1, $vs2$vm">;
418 // segment store vd, vs3, (rs1), vs2, vm
[all …]
H A DRISCVInstrFormatsV.td110 bits<5> vs2;
117 let Inst{24-20} = vs2;
130 bits<5> vs2;
137 let Inst{24-20} = vs2;
147 class RVInstV2<bits<6> funct6, bits<5> vs2, RISCVVFormat opv, dag outs, dag ins,
156 let Inst{24-20} = vs2;
169 bits<5> vs2;
176 let Inst{24-20} = vs2;
189 bits<5> vs2;
195 let Inst{24-20} = vs2;
[all …]
H A DRISCVInstrInfoZvk.td35 bits<5> vs2;
43 let Inst{24-20} = vs2;
56 (ins VR:$vs2, uimm6:$imm, VMaskOp:$vm),
57 opcodestr # ".vi", "$vd, $vs2, $imm$vm">,
61 // op vd, vs2, vs1
67 // op vd, vs2, vs1
70 (ins VR:$vd, VR:$vs2, VR:$vs1),
71 opcodestr, "$vd, $vs2, $vs1"> {
77 // op vd, vs2, imm
84 // op vd, vs2, imm where vd is also a source regardless of tail policy
[all …]
H A DRISCVInstrInfoXTHead.td58 // op vd, vs1, vs2, vm (reverse the order of vs1 and vs2)
62 (ins VR:$vd, VR:$vs1, VR:$vs2, VMaskOp:$vm),
63 opcodestr, "$vd, $vs1, $vs2$vm"> {
68 // op vd, rs1, vs2, vm (reverse the order of rs1 and vs2)
72 (ins VR:$vd, GPR:$rs1, VR:$vs2, VMaskOp:$vm),
73 opcodestr, "$vd, $rs1, $vs2$vm"> {
/freebsd/sys/net/
H A Dvnet.c515 struct vnet_sysinit *vs, *vs2; in vnet_register_sysinit() local
523 TAILQ_FOREACH(vs2, &vnet_constructors, link) { in vnet_register_sysinit()
524 if (vs2->subsystem > vs->subsystem) in vnet_register_sysinit()
526 if (vs2->subsystem == vs->subsystem && vs2->order > vs->order) in vnet_register_sysinit()
529 if (vs2 != NULL) in vnet_register_sysinit()
530 TAILQ_INSERT_BEFORE(vs2, vs, link); in vnet_register_sysinit()
564 struct vnet_sysinit *vs, *vs2; in vnet_register_sysuninit() local
570 TAILQ_FOREACH(vs2, &vnet_destructors, link) { in vnet_register_sysuninit()
571 if (vs2->subsystem > vs->subsystem) in vnet_register_sysuninit()
573 if (vs2->subsystem == vs->subsystem && vs2->order > vs->order) in vnet_register_sysuninit()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt8183-kukui.dtsi417 vsys-vs2-supply = <&reg_vsys>;
419 vs2-ldo1-supply = <&mt6358_vdram1_reg>;
420 vs2-ldo2-supply = <&mt6358_vs2_reg>;
421 vs2-ldo3-supply = <&mt6358_vs2_reg>;
422 vs2-ldo4-supply = <&mt6358_vs2_reg>;
H A Dmt8186-corsola.dtsi1297 vsys-vs2-supply = <&pp4200_z2>;
1299 vs2-ldo1-supply = <&mt6366_vdram1_reg>;
1300 vs2-ldo2-supply = <&mt6366_vs2_reg>;
1301 vs2-ldo3-supply = <&mt6366_vs2_reg>;
1373 mt6366_vs2_reg: vs2 {
H A Dmt6359.dtsi60 regulator-name = "vs2";
H A Dmt6358.dtsi85 regulator-name = "vs2";
/freebsd/sys/contrib/device-tree/src/arm/qcom/
H A Dqcom-pm8941.dtsi224 interrupt-names = "ocp-5vs1", "ocp-5vs2";
243 pm8941_5vs2: 5vs2 {
/freebsd/sys/dev/ntb/test/
H A Dntb_tool.c457 bool vs1, vs2, vs3; in parse_mw_buf() local
460 vs1 = vs2 = vs3 = false; in parse_mw_buf()
472 vs2 = true; in parse_mw_buf()
481 } else if (!vs2 && !strcmp(op2, "nbytes")) { in parse_mw_buf()
483 vs2 = true; in parse_mw_buf()
491 } else if (!vs2 && !strcmp(op3, "nbytes")) { in parse_mw_buf()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspa_stats.c433 vdev_get_stats(spa->spa_root_vdev, &ts->vs2); in spa_txg_history_fini_io()
438 ts->vs2.vs_bytes[ZIO_TYPE_READ] - ts->vs1.vs_bytes[ZIO_TYPE_READ], in spa_txg_history_fini_io()
439 ts->vs2.vs_bytes[ZIO_TYPE_WRITE] - ts->vs1.vs_bytes[ZIO_TYPE_WRITE], in spa_txg_history_fini_io()
440 ts->vs2.vs_ops[ZIO_TYPE_READ] - ts->vs1.vs_ops[ZIO_TYPE_READ], in spa_txg_history_fini_io()
441 ts->vs2.vs_ops[ZIO_TYPE_WRITE] - ts->vs1.vs_ops[ZIO_TYPE_WRITE], in spa_txg_history_fini_io()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfos_ppc64le.h211 DEFINE_VSX(vs2, LLDB_INVALID_REGNUM), \
396 uint32_t vs2[4]; member
/freebsd/sys/contrib/device-tree/Bindings/regulator/
H A Dmt6358-regulator.txt82 regulator-name = "vs2";
H A Dqcom,smd-rpm-regulator.txt255 lvs3, 5vs1, 5vs2
H A Dqcom,spmi-regulator.txt212 5vs1, 5vs2
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrMMA.td1064 (INSERT_SUBREG (IMPLICIT_DEF), $vs2, sub_vsx1),
1083 def : Pat<(v512i1 (PPCAccBuild v4i32:$vs1, v4i32:$vs0, v4i32:$vs3, v4i32:$vs2)),
1086 v16i8:$vs3, v16i8:$vs2)),
1100 def : Pat<(v512i1 (PPCAccBuild v4i32:$vs1, v4i32:$vs0, v4i32:$vs3, v4i32:$vs2)),
1103 v16i8:$vs3, v16i8:$vs2)),
H A DPPCInstrP10.td1141 (INSERT_SUBREG (IMPLICIT_DEF), $vs2, sub_vsx1),
/freebsd/sys/contrib/openzfs/include/sys/
H A Dspa.h930 vdev_stat_t vs2; member