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:doubleExponent
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs-inl.h
101
double
doubleExponent
= valExponent->GetNumber();
in RuntimeExp()
local
102
if (std::abs(doubleBase) == 1 && std::isinf(
doubleExponent
)) {
in RuntimeExp()
107
std::isfinite(
doubleExponent
) && base::NumberHelper::TruncateDouble(
doubleExponent
) ==
doubleExponent
&&
in RuntimeExp()
108
base::NumberHelper::TruncateDouble(
doubleExponent
/ 2) + base::HALF == (
doubleExponent
/ 2)) { // 2: half
in RuntimeExp()
109
if (
doubleExponent
> 0) {
in RuntimeExp()
112
if (
doubleExponent
< 0) {
in RuntimeExp()
116
return JSTaggedValue(std::pow(doubleBase,
doubleExponent
));
in RuntimeExp()
[all...]
H
A
D
runtime_stubs.cpp
902
double
doubleExponent
= exponentValue.IsInt() ? exponentValue.GetInt() : exponentValue.GetDouble();
in DEF_RUNTIME_STUBS()
local
903
if (std::abs(doubleBase) == 1 && std::isinf(
doubleExponent
)) {
in DEF_RUNTIME_STUBS()
908
std::isfinite(
doubleExponent
) && base::NumberHelper::TruncateDouble(
doubleExponent
) ==
doubleExponent
&&
in DEF_RUNTIME_STUBS()
909
base::NumberHelper::TruncateDouble(
doubleExponent
/ 2) + base::HALF == // 2 : half
in DEF_RUNTIME_STUBS()
910
(
doubleExponent
/ 2)) { // 2 : half
in DEF_RUNTIME_STUBS()
911
if (
doubleExponent
> 0) {
in DEF_RUNTIME_STUBS()
914
if (
doubleExponent
< 0) {
in DEF_RUNTIME_STUBS()
918
return JSTaggedValue(std::pow(doubleBase,
doubleExponent
))
in DEF_RUNTIME_STUBS()
[all...]
/arkcompiler/ets_runtime/ecmascript/interpreter/
H
A
D
interpreter-inl.cpp
2179
double
doubleExponent
= exponent.IsInt() ? exponent.GetInt() : exponent.GetDouble();
in RunInternal()
local
2180
if (std::abs(doubleBase) == 1 && std::isinf(
doubleExponent
)) {
in RunInternal()
2185
bool isFinite = std::isfinite(
doubleExponent
);
in RunInternal()
2186
bool truncEqual = base::NumberHelper::TruncateDouble(
doubleExponent
) ==
doubleExponent
;
in RunInternal()
2187
bool halfTruncEqual = (base::NumberHelper::TruncateDouble(
doubleExponent
/ 2) + base::HALF) ==
in RunInternal()
2188
(
doubleExponent
/ 2);
in RunInternal()
2190
if (
doubleExponent
> 0) {
in RunInternal()
2193
if (
doubleExponent
< 0) {
in RunInternal()
2197
SET_ACC(JSTaggedValue(std::pow(doubleBase,
doubleExponent
)));
in RunInternal()
[all...]
H
A
D
interpreter_assembly.cpp
1525
double
doubleExponent
= exponent.IsInt() ? exponent.GetInt() : exponent.GetDouble();
1526
if (std::abs(doubleBase) == 1 && std::isinf(
doubleExponent
)) {
1531
bool isFinite = std::isfinite(
doubleExponent
);
1532
bool truncEqual = base::NumberHelper::TruncateDouble(
doubleExponent
) ==
doubleExponent
;
1533
bool halfTruncEqual = (base::NumberHelper::TruncateDouble(
doubleExponent
/ 2) + base::HALF) ==
1534
(
doubleExponent
/ 2);
1536
if (
doubleExponent
> 0) {
1539
if (
doubleExponent
< 0) {
1543
SET_ACC(JSTaggedValue(std::pow(doubleBase,
doubleExponent
)));
[all...]
Completed in 21 milliseconds