Lines Matching defs:val
101 const s32 val, struct jit_ctx *ctx)
103 u16 hi = val >> 16;
104 u16 lo = val & 0xffff;
121 static int i64_i16_blocks(const u64 val, bool inverse)
123 return (((val >> 0) & 0xffff) != (inverse ? 0xffff : 0x0000)) +
124 (((val >> 16) & 0xffff) != (inverse ? 0xffff : 0x0000)) +
125 (((val >> 32) & 0xffff) != (inverse ? 0xffff : 0x0000)) +
126 (((val >> 48) & 0xffff) != (inverse ? 0xffff : 0x0000));
129 static inline void emit_a64_mov_i64(const int reg, const u64 val,
132 u64 nrm_tmp = val, rev_tmp = ~val;
137 return emit_a64_mov_i(0, reg, (u32)val, ctx);
165 static inline void emit_addr_mov_i64(const int reg, const u64 val,
168 u64 tmp = val;