Home
last modified time | relevance | path

Searched refs:MILLISECONDS_PER_SEC (Results 1 - 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/
H A Dmodule_logger.h53 static constexpr const int MILLISECONDS_PER_SEC = 1000; member in panda::ecmascript::ModuleLogger
57 static constexpr const double TWO_SECONDS = TWO * MILLISECONDS_PER_SEC * MILLISECONDS_PER_SEC;
/arkcompiler/ets_runtime/ecmascript/platform/common/
H A Dmutex.cpp164 const int64_t MILLISECONDS_PER_SEC = 1000; in ConvertTime() local
167 time_t seconds = ms / MILLISECONDS_PER_SEC; in ConvertTime()
168 time_t nanoseconds = (ms % MILLISECONDS_PER_SEC) * NANOSECONDS_PER_MILLISEC + ns; in ConvertTime()
/arkcompiler/runtime_core/libpandabase/os/
H A Dmutex.cpp184 const int64_t MILLISECONDS_PER_SEC = 1000; in ConvertTime() local
187 time_t seconds = ms / MILLISECONDS_PER_SEC; in ConvertTime()
188 time_t nanoseconds = (ms % MILLISECONDS_PER_SEC) * NANOSECONDS_PER_MILLISEC + ns; in ConvertTime()
/arkcompiler/runtime_core/static_core/libpandabase/os/
H A Dmutex.cpp184 const int64_t MILLISECONDS_PER_SEC = 1000; in ConvertTime() local
187 time_t seconds = ms / MILLISECONDS_PER_SEC; in ConvertTime()
188 time_t nanoseconds = (ms % MILLISECONDS_PER_SEC) * NANOSECONDS_PER_MILLISEC + ns; in ConvertTime()
/arkcompiler/runtime_core/platforms/unix/libpandabase/futex/
H A Dmutex.cpp339 const int64_t MILLISECONDS_PER_SEC = 1000; in ConvertTime() local
342 auto seconds = static_cast<time_t>(ms / MILLISECONDS_PER_SEC); in ConvertTime()
343 auto nanoseconds = static_cast<time_t>((ms % MILLISECONDS_PER_SEC) * NANOSECONDS_PER_MILLISEC + ns); in ConvertTime()
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/
H A Dfmutex.cpp362 const int64_t MILLISECONDS_PER_SEC = 1000; member
369 auto seconds = static_cast<time_t>(ms / MILLISECONDS_PER_SEC); in ConvertTime()
370 auto nanoseconds = static_cast<time_t>((ms % MILLISECONDS_PER_SEC) * NANOSECONDS_PER_MILLISEC + ns); in ConvertTime()

Completed in 4 milliseconds