Home | History | Annotate | Download | only in sljit

Lines Matching full:new_constant

507 static SLJIT_INLINE void inline_set_const(sljit_uw addr, sljit_sw new_constant, sljit_si flush)
515 src2 = get_imm(new_constant);
524 src2 = get_imm(~new_constant);
544 *ptr = new_constant;
548 inst[0] = MOVW | (inst[0] & 0xf000) | ((new_constant << 4) & 0xf0000) | (new_constant & 0xfff);
549 inst[1] = MOVT | (inst[1] & 0xf000) | ((new_constant >> 12) & 0xf0000) | ((new_constant >> 16) & 0xfff);
2563 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant)
2565 inline_set_const(addr, new_constant, 1);