Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
Dets_intrinsics_helpers.h105 inline double PowHelper(uint64_t number, int16_t exponent, uint8_t radix) in PowHelper()
183 inline double Strtod(const char *str, int exponent, uint8_t radix) in Strtod()
222 [[maybe_unused]] inline char Carry(char current, int radix) in Carry()
240 PandaString DecimalsToString(FpType *numberInteger, FpType fraction, int radix, FpType delta) in DecimalsToString()
275 PandaString IntegerToString(FpType number, int radix) in IntegerToString()
447 EtsString *FpToString(FpType number, int radix) in FpToString()
Dets_intrinsics_helpers.cpp30 double StringToDouble(const uint8_t *start, const uint8_t *end, uint8_t radix, uint32_t flags) in StringToDouble()
221 double StringToDoubleWithRadix(const uint8_t *start, const uint8_t *end, int radix) in StringToDoubleWithRadix()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dnumber_helper_test.cpp85 int radix; in HWTEST_F_L0() local
131 int radix = 2; in HWTEST_F_L0() local
323 int radix; in HWTEST_F_L0() local
373 int radix; in HWTEST_F_L0() local
418 int radix; in HWTEST_F_L0() local
492 int radix = 2; in HWTEST_F_L0() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core_Float.cpp22 EtsString *StdCoreFloatToString(float number, int radix) in StdCoreFloatToString()
Dstd_core_Double.cpp30 EtsString *StdCoreDoubleToString(double number, int radix) in StdCoreDoubleToString()
81 double StdCoreDoubleParseInt(EtsString *s, int32_t radix) in StdCoreDoubleParseInt()
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.cpp134 JSTaggedValue NumberHelper::Int32ToString(JSThread *thread, int32_t number, uint32_t radix) in Int32ToString()
189 JSTaggedValue NumberHelper::DoubleToString(JSThread *thread, double number, int radix) in DoubleToString()
496 …elper::StringToDoubleWithRadix(const uint8_t *start, const uint8_t *end, int radix, bool *negative) in StringToDoubleWithRadix()
576 char NumberHelper::Carry(char current, int radix) in Carry()
583 CString NumberHelper::IntegerToString(double number, int radix) in IntegerToString()
808 double NumberHelper::StringToDouble(const uint8_t *start, const uint8_t *end, uint8_t radix, uint32… in StringToDouble()
995 double NumberHelper::Strtod(const char *str, int exponent, uint8_t radix) in Strtod()
1102 uint8_t radix = DECIMAL; in StringToBigInt() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_number.cpp196 int32_t radix = 0; in ParseInt() local
444 double radix = base::DECIMAL; in ToString() local
Dbuiltins_bigint.cpp164 double radix = base::DECIMAL; in ToString() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dlexer.cpp237 uint64 radix = theIntVal == 0 ? 8 : 10; in GetIntConst() local
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_bigint_test.cpp346 JSHandle<JSTaggedValue> radix(thread, JSTaggedValue(2)); in HWTEST_F_L0() local
377 JSHandle<JSTaggedValue> radix(thread, JSTaggedValue(16)); in HWTEST_F_L0() local
Dbuiltins_number_test.cpp576 int radix; in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp250 double DebuggerApi::StringToDouble(const uint8_t *start, const uint8_t *end, uint8_t radix) in StringToDouble()