Home
last modified time | relevance | path

Searched full:long (Results 1 – 25 of 92) sorted by relevance

1234

/arkcompiler/ets_runtime/ecmascript/mem/
Dmem_common.h46 constexpr uint64_t operator"" _KB(long double count)
52 constexpr uint64_t operator"" _KB(unsigned long long count)
57 constexpr uint64_t operator"" _MB(long double count)
63 constexpr uint64_t operator"" _MB(unsigned long long count)
68 constexpr uint64_t operator"" _GB(long double count)
74 constexpr uint64_t operator"" _GB(unsigned long long count)
Dc_string.cpp28 long CStringToL(const CString &str) in CStringToL()
32 ASSERT(!(result == 0 && str.c_str() == endPtr) && "CString argument is not long int"); in CStringToL()
40 ASSERT(!(result == 0 && str.c_str() == endPtr) && "CString argument is not long long int"); in CStringToLL()
48 …ASSERT(!(result == 0 && str.c_str() == endPtr) && "CString argument is not unsigned long long int"… in CStringToULL()
Dsparse_space.h127 unsigned long GetSelectedRegionNumber() const in GetSelectedRegionNumber()
160 static constexpr unsigned long long PARTIAL_GC_MAX_COLLECT_REGION_RATE = 2_MB;
161 static constexpr unsigned long long PARTIAL_GC_INITIAL_COLLECT_REGION_SIZE = 16;
/arkcompiler/runtime_core/libpandabase/mem/
Dmem.h154 constexpr uint64_t operator"" _KB(long double count)
160 constexpr uint64_t operator"" _KB(unsigned long long count)
165 constexpr uint64_t operator"" _MB(long double count)
171 constexpr uint64_t operator"" _MB(unsigned long long count)
176 constexpr uint64_t operator"" _GB(long double count)
182 constexpr uint64_t operator"" _GB(unsigned long long count)
/arkcompiler/runtime_core/runtime/mem/
Dpanda_string.cpp32 ASSERT(!(result == 0 && str.c_str() == end_ptr) && "PandaString argument is not long long int"); in PandaStringToLL()
40 …(!(result == 0 && str.c_str() == end_ptr) && "PandaString argument is not unsigned long long int"); in PandaStringToULL()
/arkcompiler/ets_runtime/ecmascript/platform/windows/
Dos.cpp49 long PtracePeektext([[maybe_unused]] int pid, [[maybe_unused]] uintptr_t addr) in PtracePeektext()
51 return static_cast<long>(-1); in PtracePeektext()
/arkcompiler/ets_runtime/ecmascript/platform/unix/mac/
Dos.cpp55 long PtracePeektext([[maybe_unused]] int pid, [[maybe_unused]] uintptr_t addr) in PtracePeektext()
57 return static_cast<long>(-1); in PtracePeektext()
/arkcompiler/ets_runtime/ecmascript/
Djs_displaynames.cpp155 …// 11. Let style be ? GetOption(options, "style", "string", « "narrow", "short", "long" », "long"). in InitializeDisplayNames()
158 … {StyOption::NARROW, StyOption::SHORT, StyOption::LONG}, in InitializeDisplayNames()
159 … {"narrow", "short", "long"}, StyOption::LONG); in InitializeDisplayNames()
210 case StyOption::LONG: in InitializeDisplayNames()
302 case StyOption::LONG: in StyOptionToEcmaString()
Djs_list_format.cpp149 …// 13. Let style be ? GetOption(options, "style", "string", « "long", "short", "narrow" », "long"). in InitializeListFormat()
152 … {ListStyleOption::LONG, ListStyleOption::SHORT, in InitializeListFormat()
154 … {"long", "short", "narrow"}, ListStyleOption::LONG); in InitializeListFormat()
185 case ListStyleOption::LONG: in InitializeListFormat()
318 case ListStyleOption::LONG: in ListOptionStyleToEcmaString()
Djs_date_time_format.cpp48 const std::vector<std::string> ICU_LONG_SHORT = {"long", "short"};
49 const std::vector<std::string> ICU_NARROW_LONG_SHORT = {"narrow", "long", "short"};
51 const std::vector<std::string> ICU_NARROW_LONG_SHORT2_DIGIT_NUMERIC = {"narrow", "long", "short", "…
53 {"EEEEE", "narrow"}, {"EEEE", "long"}, {"EEE", "short"},
54 {"ccccc", "narrow"}, {"cccc", "long"}, {"ccc", "short"}
56 const std::vector<IcuPatternEntry> ICU_ERA_PE = {{"GGGGG", "narrow"}, {"GGGG", "long"}, {"GGG", "sh…
59 {"MMMMM", "narrow"}, {"MMMM", "long"}, {"MMM", "short"}, {"MM", "2-digit"}, {"M", "numeric"},
60 {"LLLLL", "narrow"}, {"LLLL", "long"}, {"LLL", "short"}, {"LL", "2-digit"}, {"L", "numeric"}
64 {"BBBBB", "narrow"}, {"bbbbb", "narrow"}, {"BBBB", "long"},
65 {"bbbb", "long"}, {"B", "short"}, {"b", "short"}
[all …]
Djs_relative_time_format.cpp102 // 16. Let s be ? GetOption(options, "style", "string", «"long", "short", "narrow"», "long"). in InitializeRelativeTimeFormat()
105 {RelativeStyleOption::LONG, RelativeStyleOption::SHORT, RelativeStyleOption::NARROW}, in InitializeRelativeTimeFormat()
106 {"long", "short", "narrow"}, RelativeStyleOption::LONG); in InitializeRelativeTimeFormat()
132 case RelativeStyleOption::LONG: in InitializeRelativeTimeFormat()
493 if (style == RelativeStyleOption::LONG) { in ResolvedOptions()
Djs_number_format.cpp96 case UnitDisplayOption::LONG: in OptionToEcmaString()
136 case CompactDisplayOption::LONG: in OptionToEcmaString()
341 …itDisplay be ? GetOption(options, "unitDisplay", "string", « "short", "narrow", "long" », "short"). in SetNumberFormatUnitOptions()
344 …nsObject, property, {UnitDisplayOption::SHORT, UnitDisplayOption::NARROW, UnitDisplayOption::LONG}, in SetNumberFormatUnitOptions()
345 {"short", "narrow", "long"}, UnitDisplayOption::SHORT); in SetNumberFormatUnitOptions()
531 case UnitDisplayOption::LONG: in InitializeNumberFormat()
562 …tDisplay be ? GetOptionOfString(options, "compactDisplay", "string", « "short", "long" », "short"). in InitializeNumberFormat()
565 …ionsObject, property, {CompactDisplayOption::SHORT, CompactDisplayOption::LONG}, {"short", "long"}, in InitializeNumberFormat()
575 case CompactDisplayOption::LONG: in InitializeNumberFormat()
Djs_number_format.h29 enum class CompactDisplayOption : uint8_t { SHORT = 0x01, LONG, EXCEPTION }; enumerator
37 enum class UnitDisplayOption : uint8_t { SHORT = 0x01, NARROW, LONG, EXCEPTION }; enumerator
/arkcompiler/ets_frontend/test262/
Dintl_skip_tests.json34 "intl402/RelativeTimeFormat/prototype/format/pl-pl-style-long.js",
37 "intl402/RelativeTimeFormat/prototype/formatToParts/pl-pl-style-long.js",
/arkcompiler/runtime_core/libpandabase/utils/
Dstring_helpers.h88 long long int result = strtoll(str, &end, base);
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dstarr.obj.yaml1653 .record panda.Long <external>
1654 .function void panda.Long.ctor(panda.Long a0, i64 a1) <external,ctor>
1655 .function i64 panda.Long.longValue(panda.Long a0) <external>
1656 .function panda.Long create(i32 a0) <static> {
1660 initobj panda.Long.ctor, v0
1663 .function i32 compare(i32 a0, panda.Long a1) <static> {
1664 call.virt.short panda.Long.longValue, a1
1672 - panda.Long[]
1825 .record panda.Long <external>
1826 .function void panda.Long.ctor(panda.Long a0, i64 a1) <external,ctor>
[all …]
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dmem.cpp132 long sz = sysconf(_SC_PAGESIZE); in GetPageSizeFromOs()
240 constexpr unsigned long PR_SET_VMA_ANON_NAME = 0;
254 static_cast<unsigned long>(ToUintPtr(mem)), size, in TagAnonymousMemory()
256 static_cast<unsigned long>(ToUintPtr(tag))); in TagAnonymousMemory()
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dthread.h21 using DWORD = unsigned long;
/arkcompiler/ets_runtime/ecmascript/platform/
Dos.h27 long PtracePeektext(int pid, uintptr_t addr);
/arkcompiler/ets_frontend/es2panda/
DREADME.md43 Skip list for the runtime: `test/test262skiplist.txt, test/test262skiplist-long.txt`.
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/
Dos.cpp55 long PtracePeektext(int pid, uintptr_t addr) in PtracePeektext()
/arkcompiler/runtime_core/docs/
Dglossary.md81 … % of time not spent in GC over a long period of time(sometimes `GC throughput` uses as % time spe…
/arkcompiler/runtime_core/libpandabase/tests/genmc/
Dmutex_test_genmc.cpp46 for (long i = 0u; i < N; i++) { in main()
Dmutex_test_3.cpp52 for (long i = 0u; i < N; i++) { in main()
/arkcompiler/runtime_core/libpandabase/tests/
Dserializer_test.cpp75 long double f;
96 TestPod<long double>(99453.64345); in TEST_F()

1234