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:chunkVal
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
H
A
D
macro_assembler_aarch64.cpp
308
uint64_t
chunkVal
= (val >> (static_cast<uint64_t>(sa))) & 0x0000FFFFUL;
in BetterUseMOVZ()
local
309
if (
chunkVal
== 0) {
in BetterUseMOVZ()
311
} else if (
chunkVal
== 0xFFFFUL) {
in BetterUseMOVZ()
376
uint64_t
chunkVal
= (srcVal >> (static_cast<uint64_t>(sa))) & 0x0000FFFFULL;
in CopyImmSize64()
local
377
if (useMovz ? (
chunkVal
== 0) : (
chunkVal
== 0x0000FFFFULL)) {
in CopyImmSize64()
380
int64_t src16 = static_cast<int64_t>(
chunkVal
);
in CopyImmSize64()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H
A
D
operand.cpp
45
uint64
chunkVal
= (val >> (static_cast<uint64>(sa))) & 0x0000FFFFUL;
in BetterUseMOVZ()
local
46
if (
chunkVal
== 0) {
in BetterUseMOVZ()
48
} else if (
chunkVal
== 0xFFFFUL) {
in BetterUseMOVZ()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H
A
D
aarch64_mop_split.h
480
uint64
chunkVal
= (static_cast<uint64>(immVal) >> sa) & 0x0000FFFFULL;
in MOP_xmovri64Split()
local
481
if (useMovz ? (
chunkVal
== 0) : (
chunkVal
== 0x0000FFFFULL)) {
in MOP_xmovri64Split()
484
ImmOperand &src16 = opndBuilder->CreateImm(k16BitSize, static_cast<int64>(
chunkVal
), false);
in MOP_xmovri64Split()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H
A
D
aarch64_cgfunc.cpp
273
uint64
chunkVal
= (srcVal >> (static_cast<uint64>(sa))) & 0x0000FFFFULL;
in SelectCopyImm()
local
274
if (useMovz ? (
chunkVal
== 0) : (
chunkVal
== 0x0000FFFFULL)) {
in SelectCopyImm()
277
ImmOperand &src16 = CreateImmOperand(static_cast<int64>(
chunkVal
), k16BitSize, false);
in SelectCopyImm()
Completed in 11 milliseconds