Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:kImm26Mask
(Results
1 - 11
of
11
) sorted by relevance
/third_party/node/deps/v8/src/codegen/mips64/
H
A
D
assembler-mips64-inl.h
118
instr &= ~
kImm26Mask
;
in set_target_internal_reference_encoded_at()
122
instr_at_put(pc, instr | (imm26 &
kImm26Mask
));
in set_target_internal_reference_encoded_at()
195
instr &=
kImm26Mask
;
in target_internal_reference()
H
A
D
assembler-mips64.cc
777
int32_t imm28 = (instr & static_cast<int32_t>(
kImm26Mask
)) << 2;
in target_at()
916
instr_at_put(pos, mark | (imm26 &
kImm26Mask
));
in target_at_put()
925
instr &= ~
kImm26Mask
;
in target_at_put()
926
instr_at_put(pos, instr | (imm26 &
kImm26Mask
));
in target_at_put()
1176
Instr instr = opcode | (offset26 &
kImm26Mask
);
in GenInstrImmediate()
3712
uint32_t imm28 = (instr & static_cast<int32_t>(
kImm26Mask
)) << 2;
in RelocateInternalReference()
3715
instr &= ~
kImm26Mask
;
in RelocateInternalReference()
3718
instr_at_put(pc, instr | (imm26 &
kImm26Mask
));
in RelocateInternalReference()
3724
int32_t imm28 = (instr & static_cast<int32_t>(
kImm26Mask
)) << 2;
in RelocateInternalReference()
3734
instr_at_put(pc, unbox | (imm26 &
kImm26Mask
));
in RelocateInternalReference()
[all...]
H
A
D
constants-mips64.h
384
const int
kImm26Mask
= ((1 << kImm26Bits) - 1) << kImm26Shift;
/third_party/node/deps/v8/src/codegen/loong64/
H
A
D
assembler-loong64-inl.h
156
int32_t code_target_index = instr &
kImm26Mask
;
in relative_code_target_object_handle_at()
H
A
D
assembler-loong64.cc
700
opcode | ((si26 & kImm16Mask) << kRkShift) | ((si26 &
kImm26Mask
) >> 16);
in GenB()
2102
int32_t offset = instr &
kImm26Mask
;
in RelocateRelativeReference()
2107
offset = ((offset & kImm16Mask) << kRkShift) | ((offset &
kImm26Mask
) >> 16);
in RelocateRelativeReference()
2108
*p = (instr & ~
kImm26Mask
) | offset;
in RelocateRelativeReference()
2278
int32_t offset = instr0 &
kImm26Mask
;
in target_address_at()
2331
((offset & kImm16Mask) << kRkShift) | ((offset &
kImm26Mask
) >> 16);
in set_target_value_at()
2332
*p = (instr & ~
kImm26Mask
) | offset;
in set_target_value_at()
H
A
D
constants-loong64.h
230
const int
kImm26Mask
= ((1 << kImm26Bits) - 1) << kImm26Shift;
/third_party/node/deps/v8/src/codegen/ppc/
H
A
D
assembler-ppc.cc
426
link = SIGN_EXT_IMM26(instr &
kImm26Mask
);
in target_at()
438
link = SIGN_EXT_IMM26(instr &
kImm26Mask
);
in target_at()
466
instr &= ((~
kImm26Mask
) | kAAMask | kLKMask);
in target_at_put()
467
instr |= (imm26 &
kImm26Mask
);
in target_at_put()
723
emit(BX | (imm26 &
kImm26Mask
) | lk);
in b()
1472
emit(kUnboundMovLabelOffsetOpcode | (link &
kImm26Mask
));
in mov_label_offset()
1496
(link &
kImm26Mask
));
in add_label_offset()
1527
emit(kUnboundMovLabelAddrOpcode | (link &
kImm26Mask
));
in mov_label_addr()
1554
emit(kUnboundJumpTableEntryOpcode | (link &
kImm26Mask
));
in emit_label_addr()
H
A
D
constants-ppc.h
2774
kImm26Mask
= (1 << 26) - 1,
enumerator
/third_party/node/deps/v8/src/codegen/mips/
H
A
D
assembler-mips.cc
1247
Instr instr = opcode | (offset26 &
kImm26Mask
);
in GenInstrImmediate()
1733
GenInstrJump(J, (target >> 2) &
kImm26Mask
);
in j()
1756
GenInstrJump(JAL, (target >> 2) &
kImm26Mask
);
in jal()
H
A
D
constants-mips.h
405
const int
kImm26Mask
= ((1 << kImm26Bits) - 1) << kImm26Shift;
/third_party/node/deps/v8/src/codegen/s390/
H
A
D
constants-s390.h
1709
kImm26Mask
= (1 << 26) - 1,
enumerator
Completed in 41 milliseconds