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:dLeft
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ic/
H
A
D
ic_binary_op.h
182
double
dLeft
= left.IsInt() ? left.GetInt() : left.GetDouble();
in DivWithTSType()
local
185
if (
dLeft
== 0.0 || std::isnan(
dLeft
)) {
in DivWithTSType()
188
uint64_t flagBit = ((base::bit_cast<uint64_t>(
dLeft
)) ^ (base::bit_cast<uint64_t>(dRight))) &
in DivWithTSType()
193
return JSTaggedValue(
dLeft
/ dRight);
in DivWithTSType()
218
double
dLeft
= left.IsInt() ? left.GetInt() : left.GetDouble();
in ModWithTSType()
local
220
if (dRight == 0.0 || std::isnan(dRight) || std::isnan(
dLeft
) || std::isinf(
dLeft
)) {
in ModWithTSType()
223
if (
dLeft
== 0.0 || std::isinf(dRight)) {
in ModWithTSType()
224
return JSTaggedValue(
dLeft
);
in ModWithTSType()
234
double
dLeft
= leftNumber.GetNumber();
ModWithTSType()
local
[all...]
/arkcompiler/ets_runtime/ecmascript/interpreter/
H
A
D
fast_runtime_stub-inl.h
51
double
dLeft
= left.IsInt() ? left.GetInt() : left.GetDouble();
in FastDiv()
local
54
if (
dLeft
== 0.0 || std::isnan(
dLeft
)) {
in FastDiv()
57
uint64_t flagBit = ((base::bit_cast<uint64_t>(
dLeft
)) ^ (base::bit_cast<uint64_t>(dRight))) &
in FastDiv()
62
return JSTaggedValue(
dLeft
/ dRight);
in FastDiv()
77
double
dLeft
= left.IsInt() ? left.GetInt() : left.GetDouble();
in FastMod()
local
79
if (dRight == 0.0 || std::isnan(dRight) || std::isnan(
dLeft
) || std::isinf(
dLeft
)) {
in FastMod()
82
if (
dLeft
== 0.0 || std::isinf(dRight)) {
in FastMod()
83
return JSTaggedValue(
dLeft
);
in FastMod()
127
double
dLeft
= left.IsInt() ? left.GetInt() : left.GetDouble();
FastStrictEqual()
local
[all...]
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs-inl.h
1996
double
dLeft
= valLeft->GetNumber();
in RuntimeDiv2()
local
1999
if (
dLeft
== 0 || std::isnan(
dLeft
)) {
in RuntimeDiv2()
2003
((base::bit_cast<uint64_t>(
dLeft
)) & base::DOUBLE_SIGN_MASK));
in RuntimeDiv2()
2006
return JSTaggedValue(
dLeft
/ dRight);
in RuntimeDiv2()
2026
double
dLeft
= valLeft->GetNumber();
in RuntimeMod2()
local
2029
if ((dRight == 0.0) || std::isnan(dRight) || std::isnan(
dLeft
) || std::isinf(
dLeft
)) {
in RuntimeMod2()
2032
if ((
dLeft
== 0.0) || std::isinf(dRight)) {
in RuntimeMod2()
2033
return JSTaggedValue(
dLeft
);
in RuntimeMod2()
[all...]
Completed in 8 milliseconds