Searched refs:new_constant (Results 1 - 12 of 12) sorted by relevance

/external/pcre/dist/sljit/
H A DsljitNativeSPARC_32.c157 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
161 inst[0] = (inst[0] & 0xffc00000) | ((new_constant >> 10) & 0x3fffff);
162 inst[1] = (inst[1] & 0xfffffc00) | (new_constant & 0x3ff);
H A DsljitNativePPC_32.c262 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
266 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
267 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff);
H A DsljitNativeMIPS_64.c460 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
464 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff);
465 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff);
466 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
467 inst[5] = (inst[5] & 0xffff0000) | (new_constant & 0xffff);
H A DsljitNativePPC_64.c412 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
416 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff);
417 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff);
418 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
419 inst[4] = (inst[4] & 0xffff0000) | (new_constant & 0xffff);
H A DsljitNativeMIPS_32.c359 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
363 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
364 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff);
H A DsljitNativeARM_32.c505 static SLJIT_INLINE void inline_set_const(sljit_uw addr, sljit_sw new_constant, sljit_si flush) argument
513 src2 = get_imm(new_constant);
522 src2 = get_imm(~new_constant);
542 *ptr = new_constant;
546 inst[0] = MOVW | (inst[0] & 0xf000) | ((new_constant << 4) & 0xf0000) | (new_constant & 0xfff);
547 inst[1] = MOVT | (inst[1] & 0xf000) | ((new_constant >> 12) & 0xf0000) | ((new_constant >> 16) & 0xfff);
2560 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2562 inline_set_const(addr, new_constant,
[all...]
H A DsljitLir.h1054 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant);
H A DsljitNativeTILEGX_64.c2581 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2585 inst[0] = (inst[0] & ~(0xFFFFL << 43)) | (((new_constant >> 48) & 0xFFFFL) << 43);
2586 inst[1] = (inst[1] & ~(0xFFFFL << 43)) | (((new_constant >> 32) & 0xFFFFL) << 43);
2587 inst[2] = (inst[2] & ~(0xFFFFL << 43)) | (((new_constant >> 16) & 0xFFFFL) << 43);
2588 inst[3] = (inst[3] & ~(0xFFFFL << 43)) | ((new_constant & 0xFFFFL) << 43);
H A DsljitLir.c2047 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2050 SLJIT_UNUSED_ARG(new_constant);
H A DsljitNativeARM_64.c2013 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2016 modify_imm64_const(inst, new_constant);
H A DsljitNativeARM_T2_32.c2067 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2070 modify_imm32_const(inst, new_constant);
H A DsljitNativeX86_common.c2918 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2920 *(sljit_sw*)addr = new_constant;

Completed in 1464 milliseconds