OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_constant
(Results
1 - 14
of
14
) sorted by relevancy
/src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeSPARC_32.c
160
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
164
inst[0] = (inst[0] & 0xffc00000) | ((
new_constant
>> 10) & 0x3fffff);
165
inst[1] = (inst[1] & 0xfffffc00) | (
new_constant
& 0x3ff);
sljitNativePPC_64.c
394
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
398
inst[0] = (inst[0] & 0xffff0000) | ((
new_constant
>> 48) & 0xffff);
399
inst[1] = (inst[1] & 0xffff0000) | ((
new_constant
>> 32) & 0xffff);
400
inst[3] = (inst[3] & 0xffff0000) | ((
new_constant
>> 16) & 0xffff);
401
inst[4] = (inst[4] & 0xffff0000) | (
new_constant
& 0xffff);
sljitNativePPC_32.c
249
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
253
inst[0] = (inst[0] & 0xffff0000) | ((
new_constant
>> 16) & 0xffff);
254
inst[1] = (inst[1] & 0xffff0000) | (
new_constant
& 0xffff);
sljitNativeMIPS_64.c
533
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
537
inst[0] = (inst[0] & 0xffff0000) | ((
new_constant
>> 48) & 0xffff);
538
inst[1] = (inst[1] & 0xffff0000) | ((
new_constant
>> 32) & 0xffff);
539
inst[3] = (inst[3] & 0xffff0000) | ((
new_constant
>> 16) & 0xffff);
540
inst[5] = (inst[5] & 0xffff0000) | (
new_constant
& 0xffff);
sljitNativeARM_32.c
513
static SLJIT_INLINE void inline_set_const(sljit_uw addr, sljit_sw executable_offset, sljit_sw
new_constant
, sljit_s32 flush_cache)
521
src2 = get_imm(
new_constant
);
531
src2 = get_imm(~
new_constant
);
553
*ptr =
new_constant
;
557
inst[0] = MOVW | (inst[0] & 0xf000) | ((
new_constant
<< 4) & 0xf0000) | (
new_constant
& 0xfff);
558
inst[1] = MOVT | (inst[1] & 0xf000) | ((
new_constant
>> 12) & 0xf0000) | ((
new_constant
>> 16) & 0xfff);
2291
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
2293
inline_set_const(addr, executable_offset,
new_constant
, 1)
[
all
...]
sljitNativeMIPS_32.c
433
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
437
inst[0] = (inst[0] & 0xffff0000) | ((
new_constant
>> 16) & 0xffff);
438
inst[1] = (inst[1] & 0xffff0000) | (
new_constant
& 0xffff);
sljitLir.h
1213
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset);
sljitNativeTILEGX_64.c
2541
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
)
2545
inst[0] = (inst[0] & ~(0xFFFFL << 43)) | (((
new_constant
>> 48) & 0xFFFFL) << 43);
2546
inst[1] = (inst[1] & ~(0xFFFFL << 43)) | (((
new_constant
>> 32) & 0xFFFFL) << 43);
2547
inst[2] = (inst[2] & ~(0xFFFFL << 43)) | (((
new_constant
>> 16) & 0xFFFFL) << 43);
2548
inst[3] = (inst[3] & ~(0xFFFFL << 43)) | ((
new_constant
& 0xFFFFL) << 43);
sljitLir.c
2140
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
2143
SLJIT_UNUSED_ARG(
new_constant
);
sljitNativeARM_64.c
2054
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
2057
modify_imm64_const(inst,
new_constant
);
sljitNativeARM_T2_32.c
1919
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
1922
modify_imm32_const(inst,
new_constant
);
sljitNativeX86_common.c
2869
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw
new_constant
, sljit_sw executable_offset)
2872
sljit_unaligned_store_sw((void*)addr,
new_constant
);
/src/external/gpl3/gcc/dist/gcc/
tree-cfg.cc
3075
bool
new_constant
;
local
3083
new_constant
= TREE_CONSTANT (t);
3085
if (old_constant !=
new_constant
)
/src/external/gpl3/gcc.old/dist/gcc/
tree-cfg.cc
3000
bool
new_constant
;
local
3008
new_constant
= TREE_CONSTANT (t);
3010
if (old_constant !=
new_constant
)
Completed in 35 milliseconds
Indexes created Sun Jul 19 00:25:04 UTC 2026