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:doubleBase
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs-inl.h
100
double
doubleBase
= valBase->GetNumber();
in RuntimeExp()
local
102
if (std::abs(
doubleBase
) == 1 && std::isinf(doubleExponent)) {
in RuntimeExp()
105
if (((
doubleBase
== 0) &&
in RuntimeExp()
106
((base::bit_cast<uint64_t>(
doubleBase
)) & base::DOUBLE_SIGN_MASK) == base::DOUBLE_SIGN_MASK) &&
in RuntimeExp()
116
return JSTaggedValue(std::pow(
doubleBase
, doubleExponent));
in RuntimeExp()
H
A
D
runtime_stubs.cpp
901
double
doubleBase
= baseValue.IsInt() ? baseValue.GetInt() : baseValue.GetDouble();
in DEF_RUNTIME_STUBS()
local
903
if (std::abs(
doubleBase
) == 1 && std::isinf(doubleExponent)) {
in DEF_RUNTIME_STUBS()
906
if ((
doubleBase
== 0 &&
in DEF_RUNTIME_STUBS()
907
((base::bit_cast<uint64_t>(
doubleBase
)) & base::DOUBLE_SIGN_MASK) == base::DOUBLE_SIGN_MASK) &&
in DEF_RUNTIME_STUBS()
918
return JSTaggedValue(std::pow(
doubleBase
, doubleExponent)).GetRawData();
in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/interpreter/
H
A
D
interpreter-inl.cpp
2178
double
doubleBase
= base.IsInt() ? base.GetInt() : base.GetDouble();
in RunInternal()
local
2180
if (std::abs(
doubleBase
) == 1 && std::isinf(doubleExponent)) {
in RunInternal()
2183
bool baseZero =
doubleBase
== 0 &&
in RunInternal()
2184
(base::bit_cast<uint64_t>(
doubleBase
) & base::DOUBLE_SIGN_MASK) == base::DOUBLE_SIGN_MASK;
in RunInternal()
2197
SET_ACC(JSTaggedValue(std::pow(
doubleBase
, doubleExponent)));
in RunInternal()
H
A
D
interpreter_assembly.cpp
1524
double
doubleBase
= base.IsInt() ? base.GetInt() : base.GetDouble();
1526
if (std::abs(
doubleBase
) == 1 && std::isinf(doubleExponent)) {
1529
bool baseZero =
doubleBase
== 0 &&
1530
(base::bit_cast<uint64_t>(
doubleBase
) & base::DOUBLE_SIGN_MASK) == base::DOUBLE_SIGN_MASK;
1543
SET_ACC(JSTaggedValue(std::pow(
doubleBase
, doubleExponent)));
Completed in 37 milliseconds