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:doubleVal
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/runtime_core/bytecode_optimizer/tests/js/
H
A
D
constantProgagation.js
419
let
doubleVal
= 1.1;
424
print(a ===
doubleVal
);
425
print(a !==
doubleVal
);
426
print(a >
doubleVal
);
427
print(a >=
doubleVal
);
428
print(a <
doubleVal
);
429
print(a <=
doubleVal
);
430
print(a ==
doubleVal
);
431
print(a !=
doubleVal
);
490
let
doubleVal
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H
A
D
global_tables.cpp
229
MIRDoubleConst *FPConstTable::GetOrCreateDoubleConst(double
doubleVal
)
231
if (std::isnan(
doubleVal
)) {
234
if (std::isinf(
doubleVal
)) {
235
return (
doubleVal
< 0) ? minusInfDoubleConst : infDoubleConst;
237
if (
doubleVal
== 0.0 && std::signbit(
doubleVal
)) {
240
return DoGetOrCreateDoubleConst(
doubleVal
);
243
MIRDoubleConst *FPConstTable::DoGetOrCreateDoubleConst(double
doubleVal
)
245
const auto it = doubleConstTable.find(
doubleVal
);
251
new MIRDoubleConst(
doubleVal
, *GlobalTable
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
mcr_lowering.cpp
445
GateRef
doubleVal
= builder_.GetDoubleOfTDouble(gate);
in ConvertTaggedNumberToBool()
local
446
result = ConvertFloat64ToBool(
doubleVal
);
in ConvertTaggedNumberToBool()
1248
GateRef
doubleVal
= builder_.CastInt64ToFloat64(value);
in LowerMigrateFromHoleNumberToHoleInt()
local
1249
GateRef convertedValue = builder_.SExtInt32ToInt64(builder_.ChangeFloat64ToInt32(
doubleVal
));
in LowerMigrateFromHoleNumberToHoleInt()
H
A
D
typed_native_inline_lowering.cpp
1912
GateRef
doubleVal
= builder_.GetDoubleOfTDouble(value);
in BuildTaggedIsInteger()
local
1913
BRANCH_CIR(BuildDoubleIsFinite(
doubleVal
), &isFinite, &exit);
in BuildTaggedIsInteger()
1916
GateRef doubleTrunc = builder_.DoubleTrunc(gate,
doubleVal
);
in BuildTaggedIsInteger()
1917
result = builder_.Equal(
doubleVal
, doubleTrunc);
in BuildTaggedIsInteger()
H
A
D
stub_builder.cpp
10063
GateRef
doubleVal
= CastInt64ToFloat64(value);
in MigrateFromHoleNumberToHoleInt()
local
10064
GateRef convertedValue = SExtInt32ToInt64(ChangeFloat64ToInt32(
doubleVal
));
in MigrateFromHoleNumberToHoleInt()
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
dump_test.cpp
184
JSTaggedValue
doubleVal
= JSTaggedValue(b);
in HWTEST_F_L0()
local
185
loopVal.push_back(JSHandle<JSTaggedValue>(thread,
doubleVal
));
in HWTEST_F_L0()
Completed in 29 milliseconds