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

/external/pcre/dist2/src/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.c507 static SLJIT_INLINE void inline_set_const(sljit_uw addr, sljit_sw new_constant, sljit_s32 flush) argument
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) argument
2565 inline_set_const(addr, new_constant,
[all...]
H A DsljitLir.h1091 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant);
H A DsljitNativeTILEGX_64.c2539 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2543 inst[0] = (inst[0] & ~(0xFFFFL << 43)) | (((new_constant >> 48) & 0xFFFFL) << 43);
2544 inst[1] = (inst[1] & ~(0xFFFFL << 43)) | (((new_constant >> 32) & 0xFFFFL) << 43);
2545 inst[2] = (inst[2] & ~(0xFFFFL << 43)) | (((new_constant >> 16) & 0xFFFFL) << 43);
2546 inst[3] = (inst[3] & ~(0xFFFFL << 43)) | ((new_constant & 0xFFFFL) << 43);
H A DsljitLir.c2038 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2041 SLJIT_UNUSED_ARG(new_constant);
H A DsljitNativeARM_64.c2045 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2048 modify_imm64_const(inst, new_constant);
H A DsljitNativeARM_T2_32.c2085 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2088 modify_imm32_const(inst, new_constant);
H A DsljitNativeX86_common.c2958 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) argument
2960 sljit_unaligned_store_sw((void*)addr, new_constant);

Completed in 363 milliseconds