Home
last modified time | relevance | path

Searched refs:power (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp365 int64_t power = 1; in NumberToString() local
367 power *= 10; // 10: base 10 in NumberToString()
368 int digitFast = static_cast<int64_t>(d * power) % 10; // 10: base 10 in NumberToString()
372 if (sFast / static_cast<double>(power) == d) { // s * (10 ** -k) in NumberToString()
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/
Drun.bat49 hdc shell "power-shell setmode 602"
/arkcompiler/runtime_core/docs/
Dmemory-management.md29 - power-saving mode
31 - special thresholds to improve power efficiency,
231 *(optional) power efficiency
267 …e list(required to support profile-guided allocation to improve fragmentation and power efficiency)
353 - GC should support various [modes](#overview)(performance, power-saving mode, normal mode);
/arkcompiler/toolchain/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
/arkcompiler/ets_runtime/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DLICENSE.txt15 …that entity. For the purposes of this definition, "control" means (i) the power, direct or indirec…
/arkcompiler/ets_frontend/arkguard/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
/arkcompiler/runtime_core/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
/arkcompiler/ets_frontend/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md324 * **EXP**: returns the first integer operand raised to the power of the second integer operand.
350 * **FEXP**: returns the first floating-point operand raised to the power of the second floating-poi…
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dcocos_worker_test.js121189 i.power = 2;
121190 i.power = e;
121194 …return t <= .5 ? Math.pow(2 * t, this.power) / 2 : Math.pow(2 * (t - 1), this.power) / (this.power
121205 return Math.pow(t - 1, this.power) * (this.power % 2 == 0 ? -1 : 1) + 1;