Home
last modified time | relevance | path

Searched defs:digit (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp121 JSTaggedValue NumberHelper::DoubleToExponential(JSThread *thread, double number, int digit) in DoubleToExponential()
151 JSTaggedValue NumberHelper::DoubleToFixed(JSThread *thread, double number, int digit) in DoubleToFixed()
158 JSTaggedValue NumberHelper::DoubleToPrecision(JSThread *thread, double number, int digit) in DoubleToPrecision()
257 int digit = static_cast<int>((current > '9') ? (current - 'a' + DECIMAL) : (current - '0')); in Carry() local
596 uint8_t digit; in StringToDouble() local
645 uint8_t digit = ToDigit(static_cast<uint8_t>(*p)); in Strtod() local
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.h150 inline void SetDigit(uint32_t index, uint32_t digit) in SetDigit()
Djs_bigint.cpp1568 uint32_t digit = 0; in BigIntToNumber() local
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp591 char32_t digit = Next(); in ParseHexEscape() local
614 char32_t digit = Next(); in ParseUnicodeDigits() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_number.cpp275 double digit = digitInt.GetNumber(); in ToFixed() local
397 double digit = digitInt.GetNumber(); in ToPrecision() local
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp160 uint32_t digit = maxSafeIntPlusOne->GetDigit(i); in HWTEST_F_L0() local
169 uint32_t digit = maxSafeIntPlusOne->GetDigit(i); in HWTEST_F_L0() local