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:log2
(Results
1 - 18
of
18
) sorted by relevance
/arkcompiler/runtime_core/static_core/compiler/tests/
H
A
D
encoder_test_common.h
69
inline const float MIN_EXP_BASE2_FLOAT = std::
log2
(FLT_MIN);
70
inline const float MAX_EXP_BASE2_FLOAT = std::
log2
(FLT_MAX) - 1.0;
71
inline const double MIN_EXP_BASE2_DOUBLE = std::
log2
(DBL_MIN);
72
inline const double MAX_EXP_BASE2_DOUBLE = std::
log2
(DBL_MAX) - 1.0;
/arkcompiler/runtime_core/libpandabase/tests/
H
A
D
math_helpers_test.cpp
29
EXPECT_EQ(GetIntLog2(val),
log2
(static_cast<double>(val)));
in HWTEST()
/arkcompiler/runtime_core/static_core/libpandabase/tests/
H
A
D
math_helpers_test.cpp
30
EXPECT_EQ(GetIntLog2(val),
log2
(static_cast<double>(val)));
in TEST()
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
frame_states.cpp
1308
std::string
log2
= "LoopAssignment [";
in PrintLoop()
local
1313
log2
+= ",";
in PrintLoop()
1316
log2
+= std::to_string(i);
in PrintLoop()
1319
LOG_COMPILER(INFO) <<
log2
<< "]";
in PrintLoop()
H
A
D
bytecode_circuit_builder.cpp
1243
std::string
log2
("\tTrys: ");
in PrintGraph()
1245
log2
+= std::to_string(tryBlock->id) + " , ";
in PrintGraph()
1247
LOG_COMPILER(INFO) <<
log2
;
in PrintGraph()
H
A
D
scheduler.cpp
148
const size_t sizeLog = std::ceil(std::
log2
(static_cast<double>(result.size())) + 1);
in Run()
H
A
D
verifier.cpp
513
const size_t sizeLog = std::ceil(std::
log2
(static_cast<double>(bbGatesList.size())) + 1);
in Run()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
H
A
D
ets_intrinsics_helpers.h
109
const double log2Radix {std::
log2
(radix)};
in PowHelper()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
H
A
D
mir_symbol.h
556
align = static_cast<uint8>(
log2
(align));
in GetSymbolAlign()
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
H
A
D
deoptimizer.cpp
631
shift = std::floor(std::
log2
(depth)) + 1;
in ComputeShift()
/arkcompiler/runtime_core/compiler/tests/aarch32/
H
A
D
encoder32_test.cpp
61
static const float MIN_EXP_BASE2_FLOAT = std::
log2
(FLT_MIN);
62
static const float MAX_EXP_BASE2_FLOAT = std::
log2
(FLT_MAX) - 1.0;
63
static const double MIN_EXP_BASE2_DOUBLE = std::
log2
(DBL_MIN);
64
static const double MAX_EXP_BASE2_DOUBLE = std::
log2
(DBL_MAX) - 1.0;
/arkcompiler/runtime_core/compiler/tests/amd64/
H
A
D
encoder64_test.cpp
62
static const float MIN_EXP_BASE2_FLOAT = std::
log2
(FLT_MIN);
63
static const float MAX_EXP_BASE2_FLOAT = std::
log2
(FLT_MAX) - 1.0;
64
static const double MIN_EXP_BASE2_DOUBLE = std::
log2
(DBL_MIN);
65
static const double MAX_EXP_BASE2_DOUBLE = std::
log2
(DBL_MAX) - 1.0;
/arkcompiler/runtime_core/compiler/tests/aarch64/
H
A
D
encoder64_test.cpp
62
static const float MIN_EXP_BASE2_FLOAT = std::
log2
(FLT_MIN);
63
static const float MAX_EXP_BASE2_FLOAT = std::
log2
(FLT_MAX) - 1.0;
64
static const double MIN_EXP_BASE2_DOUBLE = std::
log2
(DBL_MIN);
65
static const double MAX_EXP_BASE2_DOUBLE = std::
log2
(DBL_MAX) - 1.0;
/arkcompiler/runtime_core/static_core/libllvmbackend/
H
A
D
llvm_ark_interface.cpp
387
case llvm::Intrinsic::
log2
:
in GetIntrinsicIdSwitch()
/arkcompiler/ets_runtime/ecmascript/builtins/
H
A
D
builtins_math.cpp
496
result = std::
log2
(value);
in Log2()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H
A
D
emit.cpp
368
log2
(Globals::GetInstance()->GetBECommon()->GetTypeAlign(mirType->GetTypeIndex()))));
in EmitAsmLabel()
392
align = static_cast<uint8>(
log2
(align));
in EmitAsmLabel()
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs.cpp
3257
return std::
log2
(x);
in FloatLog2()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H
A
D
cocos_worker_test.js
8982
log2
: r,
19665
return Math.floor(Math.
log2
(Math.max(t, e)));
[all...]
Completed in 65 milliseconds