Searched refs:new_constant (Results 1 – 12 of 12) sorted by relevance
/PHP-8.0/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativePPC_32.c | 269 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 274 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const() 275 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
|
H A D | sljitNativePPC_64.c | 489 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 493 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const() 494 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const() 495 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const() 496 inst[4] = (inst[4] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
|
H A D | sljitNativeSPARC_32.c | 277 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 282 inst[0] = (inst[0] & 0xffc00000) | ((new_constant >> 10) & 0x3fffff); in sljit_set_const() 283 inst[1] = (inst[1] & 0xfffffc00) | (new_constant & 0x3ff); in sljit_set_const()
|
H A D | sljitNativeMIPS_64.c | 537 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 541 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff); in sljit_set_const() 542 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff); in sljit_set_const() 543 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const() 544 inst[5] = (inst[5] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
|
H A D | sljitNativeARM_32.c | 524 … inline_set_const(sljit_uw addr, sljit_sw executable_offset, sljit_sw new_constant, sljit_s32 flus… in inline_set_const() argument 532 src2 = get_imm(new_constant); in inline_set_const() 542 src2 = get_imm(~new_constant); in inline_set_const() 564 *ptr = new_constant; in inline_set_const() 568 inst[0] = MOVW | (inst[0] & 0xf000) | ((new_constant << 4) & 0xf0000) | (new_constant & 0xfff); in inline_set_const() 569 …inst[1] = MOVT | (inst[1] & 0xf000) | ((new_constant >> 12) & 0xf0000) | ((new_constant >> 16) & 0… in inline_set_const() 2747 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 2749 inline_set_const(addr, executable_offset, new_constant, 1); in sljit_set_const()
|
H A D | sljitNativeMIPS_32.c | 436 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 441 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff); in sljit_set_const() 442 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff); in sljit_set_const()
|
H A D | sljitNativeTILEGX_64.c | 2539 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant) in sljit_set_const() argument 2543 inst[0] = (inst[0] & ~(0xFFFFL << 43)) | (((new_constant >> 48) & 0xFFFFL) << 43); in sljit_set_const() 2544 inst[1] = (inst[1] & ~(0xFFFFL << 43)) | (((new_constant >> 32) & 0xFFFFL) << 43); in sljit_set_const() 2545 inst[2] = (inst[2] & ~(0xFFFFL << 43)) | (((new_constant >> 16) & 0xFFFFL) << 43); in sljit_set_const() 2546 inst[3] = (inst[3] & ~(0xFFFFL << 43)) | ((new_constant & 0xFFFFL) << 43); in sljit_set_const()
|
H A D | sljitLir.h | 1391 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut…
|
H A D | sljitNativeARM_64.c | 2042 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 2045 modify_imm64_const(inst, new_constant); in sljit_set_const()
|
H A D | sljitLir.c | 2686 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 2689 SLJIT_UNUSED_ARG(new_constant); in sljit_set_const()
|
H A D | sljitNativeARM_T2_32.c | 2374 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… in sljit_set_const() argument 2377 modify_imm32_const(inst, new_constant); in sljit_set_const()
|
H A D | sljitNativeX86_common.c | 3133 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw execut… argument 3136 sljit_unaligned_store_sw((void*)addr, new_constant);
|
Completed in 60 milliseconds