Searched refs:imm8 (Results 1 - 5 of 5) sorted by relevance

/linux-master/arch/arm/kernel/
H A Dphys2virt.S80 @ as imm4:i:imm3:imm8)
84 @ MOVW | 1 1 1 1 0 | i | 1 0 0 1 0 0 | imm4 || 0 | imm3 | Rd | imm8 |
94 @ order bits, which can be patched into imm8 directly (and i:imm3
99 @ MOV | 1 1 1 1 0 | i | 0 0 0 1 0 0 1 1 1 1 || 0 | imm3 | Rd | imm8 |
100 @ MVN | 1 1 1 1 0 | i | 0 0 0 1 1 0 1 1 1 1 || 0 | imm3 | Rd | imm8 |
105 ubfx r6, r6, #21, #8 @ put bits 28:21 into the MOVW imm8 field
/linux-master/arch/riscv/net/
H A Dbpf_jit.h702 static inline u16 rvc_lwsp(u8 rd, u32 imm8) argument
706 imm = ((imm8 & 0xc0) >> 6) | (imm8 & 0x3c);
730 static inline u16 rvc_swsp(u32 imm8, u8 rs2) argument
734 imm = (imm8 & 0x3c) | ((imm8 & 0xc0) >> 6);
896 static inline u16 rvc_ld(u8 rd, u32 imm8, u8 rs1) argument
900 imm_hi = (imm8 & 0x38) >> 3;
901 imm_lo = (imm8 & 0xc0) >> 6;
905 static inline u16 rvc_sd(u8 rs1, u32 imm8, u argument
[all...]
/linux-master/arch/arm/net/
H A Dbpf_jit_32.c361 static u32 arm_bpf_ldst_imm8(u32 op, u8 rt, u8 rn, s16 imm8) argument
364 if (imm8 >= 0)
367 imm8 = -imm8;
368 return op | (imm8 & 0xf0) << 4 | (imm8 & 0x0f);
/linux-master/arch/riscv/kernel/
H A Dmodule.c126 u16 imm8 = (offset & 0x100) << (12 - 8); local
133 imm8 | imm7_6 | imm5 | imm4_3 | imm2_1);
/linux-master/drivers/net/ethernet/netronome/nfp/bpf/
H A Djit.c488 u8 areg, u8 bmask, u8 breg, u8 shift, bool imm8,
498 FIELD_PREP(OP_LDF_I8, imm8) |
487 __emit_ld_field(struct nfp_prog *nfp_prog, enum shf_sc sc, u8 areg, u8 bmask, u8 breg, u8 shift, bool imm8, bool zero, bool swap, bool wr_both, bool dst_lmextn, bool src_lmextn) argument

Completed in 211 milliseconds