Home
last modified time | relevance | path

Searched refs:TEN (Results 1 - 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/
H A Ddtoa_helper.cpp77 if (n < TEN) { in CountDecimalDigit32()
139 d = p1 / TEN; in DigitGen()
140 p1 %= TEN; in DigitGen()
163 p2 *= TEN; in DigitGen()
164 delta *= TEN; in DigitGen()
215 buffer[(*length) + i] = '0' + number % TEN; in FillDigits32FixedLength()
216 number /= TEN; in FillDigits32FixedLength()
226 int digit = static_cast<int>(number % TEN); in FillDigits32()
227 number /= TEN; in FillDigits32()
H A Dutf_helper.h93 enum UtfOffset : uint8_t { SIX = 6, TEN = 10, TWELVE = 12, EIGHTEEN = 18 };
136 codePoint <<= UtfOffset::TEN; in CombineTwoU16() member in panda::ecmascript::base::utf_helper::UtfOffset
H A Ddtoa_helper.h158 static constexpr uint32_t TEN = 10; member in panda::ecmascript::base::DtoaHelper
/arkcompiler/ets_runtime/ecmascript/
H A Ddate_parse.h58 num = (value_ - '0') + num * JSDate::TEN; in ReadNumber()
60 const int maxDecimal = (std::numeric_limits<int>::max() - JSDate::NUM_NINE) / JSDate::TEN; in ReadNumber()
439 return value * JSDate::TEN; in NormMilliSecond()
447 divisor *= JSDate::TEN; in NormMilliSecond()
H A Djs_date.h162 static constexpr int TEN = 10; member in panda::ecmascript::JSDate
H A Djs_date.cpp235 value = value * TEN + val;
H A Dobject_fast_operator-inl.h1225 value = value * JSDate::TEN + val; in GetNumFromString()
/arkcompiler/runtime_core/static_core/runtime/tests/
H A Dmock_queue_thread_pool.cpp23 constexpr int TEN = 10; member
139 std::this_thread::sleep_for(std::chrono::milliseconds(TEN)); in SolveTask()
313 std::this_thread::sleep_for(std::chrono::milliseconds(TEN)); in TestThreadPoolWithControllers()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/
H A Dets_intrinsics_helpers.cpp550 SignedInt power = TEN; in SmallFpToString()
560 power *= TEN; in SmallFpToString()
563 auto digit = s % TEN; in SmallFpToString()
564 s /= TEN; in SmallFpToString()
H A Ddtoa_helper.h71 static constexpr uint32_t TEN = 10; member in ark::ets::intrinsics::helpers::DtoaHelper
H A Dets_intrinsics_helpers.h63 inline constexpr size_t TEN = 10; member
/arkcompiler/runtime_core/static_core/libpandabase/utils/
H A Dutf.h80 enum UtfOffset : uint8_t { SIX = 6, TEN = 10, TWELVE = 12, EIGHTEEN = 18 };
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/
H A Dets_intrinsics_peephole.cpp332 constexpr auto TEN = 10U; in PeepholeDoubleToString() local
333 if (!(radix->IsConst() && radix->CastToConstant()->GetIntValue() == TEN)) { in PeepholeDoubleToString()

Completed in 13 milliseconds