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:IsFixed
(Results
1 - 11
of
11
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
loop_analysis.cpp
64
if (isCurLoop && acc_.IsLoopExit(cur) && (!acc_.
IsFixed
(*it))) {
in CollectUseGate()
66
} else if (isCurLoop && acc_.IsLoopExitRelated(cur) && acc_.
IsFixed
(cur)) {
in CollectUseGate()
165
if ((!acc_.IsLoopExit(cur)) || (!acc_.
IsFixed
(nex))) {
in ComputeLoopDepth()
H
A
D
share_gate_meta_data.cpp
65
bool GateMetaData::
IsFixed
() const
in IsFixed()
function in panda::ecmascript::kungfu::GateMetaData
84
ASSERT(!
IsFixed
());
in IsSchedulable()
99
return (!IsVirtualState()) && (!
IsFixed
()) && (GetStateCount() > 0);
in IsState()
H
A
D
scheduler.cpp
226
if (acc.
IsFixed
(succGate)) {
in Run()
261
} else if (acc.
IsFixed
(gate)) {
in CalculateSchedulingUpperBound()
353
if (acc.
IsFixed
(succGate)) {
in CalculateFixedGatesList()
438
} else if (acc.
IsFixed
(curGate)) {
in CalculateSchedulingLowerBound()
H
A
D
gate_accessor.h
554
bool
IsFixed
(GateRef g) const;
767
bool
IsFixed
(GateRef g) const;
H
A
D
verifier.cpp
238
if (ac.
IsFixed
(predGate) &&
in RunFixedGatesRelationsCheck()
426
if (ac.
IsFixed
(succGate)) {
in FindFixedGates()
H
A
D
graph_linearizer.h
297
bool
IsFixed
() const
in IsFixed()
function
H
A
D
state_split_linearizer.cpp
176
if (!acc_.IsVirtualState(currentGate) && !acc_.
IsFixed
(currentGate)) {
in ProcessStateDepend()
H
A
D
gate_accessor.cpp
1837
bool GateAccessor::
IsFixed
(GateRef g) const
in IsFixed()
function in GateAccessor
1839
return GetMetaData(g)->
IsFixed
();
in IsFixed()
1885
bool ConstGateAccessor::
IsFixed
(GateRef g) const
in IsFixed()
function in ConstGateAccessor
1887
return GetMetaData(g)->
IsFixed
();
in IsFixed()
H
A
D
gate.cpp
344
ASSERT(!curOut->GetGateConst()->GetMetaData()->
IsFixed
());
in CheckBranchOutput()
351
ASSERT(!curOut->GetGateConst()->GetMetaData()->
IsFixed
());
in CheckBranchOutput()
H
A
D
share_gate_meta_data.h
158
bool
IsFixed
() const;
/arkcompiler/runtime_core/libpandabase/utils/
H
A
D
bit_vector.h
565
template <bool
IsFixed
, typename Allocator>
567
class BitVectorBase<
IsFixed
, Allocator>::BitIndexIterator {
Completed in 27 milliseconds