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:ceil
(Results
1 - 19
of
19
) sorted by relevance
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
H
A
D
std_core_Double.cpp
168
digitAbs = std::abs((digitAbs >= 0) ? std::floor(digitAbs) : std::
ceil
(digitAbs));
in StdCoreDoubleToExponential()
201
digitAbs = std::abs((digitAbs >= 0) ? std::floor(digitAbs) : std::
ceil
(digitAbs));
in StdCoreDoubleToPrecision()
234
digitAbs = std::abs((digitAbs >= 0) ? std::floor(digitAbs) : std::
ceil
(digitAbs));
in StdCoreDoubleToFixed()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
H
A
D
gc_stats.cpp
198
uint64_t GCStats::ConvertTimeToPeriod(uint64_t timeInNanos, bool
ceil
)
in ConvertTimeToPeriod()
argument
201
if (
ceil
) {
in ConvertTimeToPeriod()
203
return std::
ceil
(std::chrono::duration_cast<ResultDuration>(nanos).count());
in ConvertTimeToPeriod()
H
A
D
gc_stats.h
296
uint64_t ConvertTimeToPeriod(uint64_t timeInNanos, bool
ceil
= false);
/arkcompiler/ets_runtime/test/aottest/exception_case14/
H
A
D
exception_case14.js
18
mathceil = Math.
ceil
,
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
H
A
D
ets_intrinsics_helpers.h
241
return (number >= 0) ? std::floor(number) : std::
ceil
(number);
in TruncateFp()
/arkcompiler/runtime_core/static_core/runtime/tests/
H
A
D
freelist_allocator_test.cpp
279
minSizePowerOfTwo =
ceil
(std::log(FREELIST_ALLOCATOR_MIN_SIZE) / std::log(2.0F));
in TEST_F()
/arkcompiler/runtime_core/static_core/compiler/tests/amd64/
H
A
D
encoder64_test_2.cpp
357
auto innerIters = static_cast<uint64_t>(std::
ceil
(std::sqrt(ITERATION)));
in TestDivImm()
488
auto innerIters = static_cast<uint64_t>(std::
ceil
(std::sqrt(ITERATION)));
in TestModImm()
/arkcompiler/ets_runtime/ecmascript/builtins/
H
A
D
builtins_math.cpp
228
result = std::
ceil
(value);
in Ceil()
675
result = std::
ceil
(value);
in Round()
H
A
D
builtins_global.cpp
367
uint32_t repeatTimes = std::
ceil
(fillLen / targetStrLen);
in StringPad()
/arkcompiler/ets_runtime/ecmascript/compiler/
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/compiler/tests/aarch64/
H
A
D
encoder64_test_2.cpp
499
auto ceiled = std::
ceil
(std::sqrt(ITERATION));
in TestDivImm()
558
auto innerIters = static_cast<uint64_t>(std::
ceil
(std::sqrt(ITERATION)));
in TestModImm()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
H
A
D
constantfold.cpp
932
float floatValue =
ceil
(constValue->GetValue());
in FoldCeil()
944
double doubleValue =
ceil
(constValue->GetValue());
in FoldCeil()
/arkcompiler/runtime_core/static_core/libllvmbackend/
H
A
D
llvm_ark_interface.cpp
380
case llvm::Intrinsic::
ceil
:
in GetIntrinsicIdSwitch()
/arkcompiler/ets_runtime/ecmascript/base/
H
A
D
number_helper.cpp
815
double ret = (d >= 0) ? std::floor(d) : std::
ceil
(d);
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H
A
D
cocos_worker_test.js
5561
this._width = t ? Math.
ceil
(t) : 0;
5562
this._height = e ? Math.
ceil
(e) : 0;
5589
t = Math.
ceil
(t);
5600
t = Math.
ceil
(t);
11638
static
ceil
(t, e) {
11639
t.x = Math.
ceil
(e.x);
11640
t.y = Math.
ceil
(e.y);
11641
t.z = Math.
ceil
(e.z);
14982
static
ceil
(t, e) {
14983
t.x = Math.
ceil
(
[all...]
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
H
A
D
g1-gc.cpp
2553
return static_cast<size_t>(
ceil
(analytics_.PredictAllocationRate() * delayBeforePause));
in CalculateDesiredEdenLengthByPauseDelay()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H
A
D
llvm_ir_builder.cpp
2155
llvm::Intrinsic::ID llvmId = llvm::Intrinsic::
ceil
;
in VisitCeil()
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs.cpp
3242
return std::
ceil
(x);
in FloatCeil()
Completed in 54 milliseconds