Home
last modified time | relevance | path

Searched defs:exponent (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
Dets_intrinsics_helpers.h72 uint16_t exponent : coretypes::DOUBLE_EXPONENT_SIZE; member
106 inline double PowHelper(uint64_t number, int16_t exponent, uint8_t radix) in PowHelper()
184 inline double Strtod(const char *str, int exponent, uint8_t radix) in Strtod()
Dets_intrinsics_helpers.cpp181 int exponent = 0; in StringToDouble() local
/arkcompiler/ets_runtime/ecmascript/base/
Ddtoa_helper.cpp295 void DtoaHelper::FillFractionals(uint64_t fractionals, int exponent, int fractional_count, in FillFractionals()
372 int exponent = NumberHelper::Exponent(v); in FixedDtoa() local
Dnumber_helper.cpp977 int exponent = 0; in StringToDouble() local
1076 double NumberHelper::Strtod(const char *str, int exponent, uint8_t radix) in Strtod()
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp1056 …le<BigInt> BigInt::Exponentiate(JSThread *thread, JSHandle<BigInt> base, JSHandle<BigInt> exponent) in Exponentiate()
1543 JSHandle<BigInt> exponent = Uint64ToBigInt(thread, bit); in AsUintN() local
1565 JSHandle<BigInt> exponent = Int64ToBigInt(thread, bit - 1); in AsintN() local
1582 … JSTaggedNumber CalculateNumber(const uint64_t &sign, const uint64_t &mantissa, uint64_t &exponent) in CalculateNumber()
1594 static JSTaggedNumber Rounding(const uint64_t &sign, uint64_t &mantissa, uint64_t &exponent, bool n… in Rounding()
1631 uint64_t exponent = static_cast<uint64_t>(bigintBitLen - 1); in BigIntToNumber() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_math.cpp82 int exponent = Exponent(d64); in ToInt32() local
/arkcompiler/ets_frontend/es2panda/util/
Dhelpers.cpp182 int32_t exponent = atoi(sciNotationArray + significandBitCount + 1 + (significandBitCount > 1)); in GetScientificNotationForDouble() local
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp591 JSHandle<BigInt> exponent = BigInt::Int32ToBigInt(thread, 64); // 64 : bits in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.cpp338 JSTaggedValue SlowRuntimeStub::Exp(JSThread *thread, JSTaggedValue base, JSTaggedValue exponent) in Exp()
Dinterpreter-inl.cpp2161 JSTaggedValue exponent = GET_ACC(); in RunInternal() local
Dinterpreter_assembly.cpp1515 JSTaggedValue exponent = GET_ACC(); in HandleExpImm8V8() local
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h83 JSTaggedValue RuntimeStubs::RuntimeExp(JSThread *thread, JSTaggedValue base, JSTaggedValue exponent) in RuntimeExp()