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:Decision
(Results
1 - 5
of
5
) sorted by relevance
/third_party/node/deps/v8/src/compiler/
H
A
D
common-operator-reducer.cc
70
Decision
CommonOperatorReducer::DecideCondition(Node* const cond) {
in DecideCondition()
76
return m.ResolvedValue() ?
Decision
::kTrue :
Decision
::kFalse;
in DecideCondition()
80
return
Decision
::kTrue;
in DecideCondition()
84
if (!maybe_result.has_value()) return
Decision
::kUnknown;
in DecideCondition()
85
return *maybe_result ?
Decision
::kTrue :
Decision
::kFalse;
in DecideCondition()
88
return
Decision
::kUnknown;
in DecideCondition()
102
DecideCondition(cond->InputAt(1)) ==
Decision
::kFalse &&
in ReduceBranch()
103
DecideCondition(cond->InputAt(2)) ==
Decision
in ReduceBranch()
[all...]
H
A
D
simplified-operator-reducer.cc
24
Decision
DecideObjectIsSmi(Node* const input) {
in DecideObjectIsSmi()
27
return IsSmiDouble(m.ResolvedValue()) ?
Decision
::kTrue :
Decision
::kFalse;
in DecideObjectIsSmi()
29
if (m.IsAllocate()) return
Decision
::kFalse;
in DecideObjectIsSmi()
30
if (m.IsChangeBitToTagged()) return
Decision
::kFalse;
in DecideObjectIsSmi()
31
if (m.IsChangeInt31ToTaggedSigned()) return
Decision
::kTrue;
in DecideObjectIsSmi()
32
if (m.IsHeapConstant()) return
Decision
::kFalse;
in DecideObjectIsSmi()
33
return
Decision
::kUnknown;
in DecideObjectIsSmi()
185
if (DecideObjectIsSmi(input) ==
Decision
::kFalse) {
in Reduce()
198
if (DecideObjectIsSmi(input) ==
Decision
in Reduce()
[all...]
H
A
D
common-operator-reducer.h
54
Decision
DecideCondition(Node* const cond);
H
A
D
graph-reducer.h
30
enum class
Decision
: uint8_t { kUnknown, kTrue, kFalse };
class
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H
A
D
LoopVectorize.cpp
1096
///
Decision
that was taken during cost calculation for memory instruction.
2364
LoopVectorizationCostModel::InstWidening
Decision
=
2366
assert(
Decision
!= LoopVectorizationCostModel::CM_Unknown &&
2368
if (
Decision
== LoopVectorizationCostModel::CM_Interleave)
2381
bool Reverse = (
Decision
== LoopVectorizationCostModel::CM_Widen_Reverse);
2383
Reverse || (
Decision
== LoopVectorizationCostModel::CM_Widen);
2385
(
Decision
== LoopVectorizationCostModel::CM_GatherScatter);
2388
// gather/scatter. Otherwise
Decision
should have been to Scalarize.
4640
"
Decision
should not be set yet.");
6039
InstWidening
Decision
[all...]
Completed in 9 milliseconds