Searched refs:shift_amt (Results 1 - 2 of 2) sorted by relevance

/linux-master/drivers/net/ethernet/netronome/nfp/bpf/
H A Djit.c1987 * if shift_amt >= 32
1988 * dst_high = dst_low << shift_amt[4:0]
1991 * dst_high = (dst_high, dst_low) >> (32 - shift_amt)
1992 * dst_low = dst_low << shift_amt
1996 static int __shl_imm64(struct nfp_prog *nfp_prog, u8 dst, u8 shift_amt) argument
1998 if (!shift_amt)
2001 if (shift_amt < 32) {
2004 32 - shift_amt);
2006 reg_b(dst), SHF_SC_L_SHF, shift_amt);
2007 } else if (shift_amt
2111 __shr_imm64(struct nfp_prog *nfp_prog, u8 dst, u8 shift_amt) argument
2215 __ashr_imm64(struct nfp_prog *nfp_prog, u8 dst, u8 shift_amt) argument
2427 __ashr_imm(struct nfp_prog *nfp_prog, struct nfp_insn_meta *meta, u8 dst, u8 shift_amt) argument
2475 __shr_imm(struct nfp_prog *nfp_prog, struct nfp_insn_meta *meta, u8 dst, u8 shift_amt) argument
2514 __shl_imm(struct nfp_prog *nfp_prog, struct nfp_insn_meta *meta, u8 dst, u8 shift_amt) argument
[all...]
/linux-master/drivers/pci/controller/
H A Dpcie-brcmstb.c496 const int shift_amt = data->hwirq + msi->legacy_shift; local
498 writel(1 << shift_amt, msi->intr_base + MSI_INT_CLR);

Completed in 219 milliseconds