Home
last modified time | relevance | path

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

/openbmc/linux/arch/parisc/net/
H A Dbpf_jit_comp64.c97 static void emit_hppa64_extrd(u8 src, u8 pos, u8 len, u8 target, bool signed_op, struct hppa_jit_co… in emit_hppa64_extrd() argument
105 c |= signed_op ? 0x1 : 0; in emit_hppa64_extrd()
109 static void emit_hppa64_extrw(u8 src, u8 pos, u8 len, u8 target, bool signed_op, struct hppa_jit_co… in emit_hppa64_extrw() argument
115 c = 0x06 | (signed_op ? 1 : 0); in emit_hppa64_extrw()
124 static void emit_hppa64_shrd(u8 src, int num, u8 target, bool signed_op, struct hppa_jit_context *c… in emit_hppa64_shrd() argument
126 emit_hppa64_extrd(src, 63-num, 64-num, target, signed_op, ctx); in emit_hppa64_shrd()
129 static void emit_hppa64_shrw(u8 src, int num, u8 target, bool signed_op, struct hppa_jit_context *c… in emit_hppa64_shrw() argument
131 emit_hppa64_extrw(src, 31-num, 32-num, target, signed_op, ctx); in emit_hppa64_shrw()