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:INPUT_COUNT
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/runtime_core/compiler/optimizer/ir/
H
A
D
inst.h
1345
static constexpr int
INPUT_COUNT
= 0;
member
1636
static constexpr int
INPUT_COUNT
= N;
member in ConditionMixin::FixedInputsInst
1674
std::array<Register, N> src_regs_ = CreateArray(INVALID_REG, std::make_index_sequence<
INPUT_COUNT
>());
1682
for (size_t i = 0; i <
INPUT_COUNT
; ++i) {
1728
static constexpr int
INPUT_COUNT
= MAX_STATIC_INPUTS;
2881
} else if constexpr (InstType::
INPUT_COUNT
== 0) {
in New()
2886
} else if constexpr (InstType::
INPUT_COUNT
== MAX_STATIC_INPUTS) {
in New()
2893
static_cast<Inst *>(inst)->SetField<InputsCount>(InstType::
INPUT_COUNT
);
in New()
2896
constexpr size_t OPERANDS_SIZE = sizeof(Operands<InstType::
INPUT_COUNT
>);
in New()
2897
constexpr auto ALIGNMENT {GetLogAlignment(alignof(Operands<InstType::
INPUT_COUNT
>))};
in New()
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
inst.h
1680
static constexpr int
INPUT_COUNT
= 0;
member
2360
static constexpr int
INPUT_COUNT
= N;
2362
using InputsArray = std::array<Inst *,
INPUT_COUNT
>;
2370
SetField<InputsCount>(
INPUT_COUNT
);
2383
SetField<InputsCount>(
INPUT_COUNT
);
2434
std::array<Register, N> srcRegs_ = CreateArray(INVALID_REG, std::make_index_sequence<
INPUT_COUNT
>());
2449
static constexpr int
INPUT_COUNT
= MAX_STATIC_INPUTS;
7044
if constexpr (InstType::
INPUT_COUNT
== MAX_STATIC_INPUTS) {
7049
} else if constexpr (InstType::
INPUT_COUNT
!= 0) {
7050
constexpr size_t OPERANDS_SIZE = sizeof(Operands<InstType::
INPUT_COUNT
>);
[all...]
H
A
D
inst.cpp
562
for (size_t i = 0; i <
INPUT_COUNT
; ++i) {
in Clone()
Completed in 13 milliseconds