Searched refs:lim (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
H A D | thread.cpp | 180 struct rlimit lim; in ThreadGetStackInfo() local 181 s += getrlimit(RLIMIT_STACK, &lim); in ThreadGetStackInfo() 184 size_t stackSizeLimit = lim.rlim_cur; in ThreadGetStackInfo()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_string.cpp | 1607 uint32_t lim = UINT32_MAX - 1; in Split() local 1611 lim = limitIntValue.ToUint32(); in Split() 1613 // ReturnIfAbrupt(lim). in Split() 1615 if (lim == 0) { in Split() 1620 return CreateArrayBySplitString(thread, ecmaVm, thisString, seperatorString, thisLength, seperatorLength, lim); in Split() 1644 // If limit is undefined, let lim = 2^53–1; else let lim = ToLength(limit). in Split() 1645 uint32_t lim = UINT32_MAX - 1; in Split() local 1649 lim = limitIntValue.ToUint32(); in Split() 1651 // ReturnIfAbrupt(lim) in Split() 1676 CreateArrayFromString(JSThread *thread, EcmaVM *ecmaVm, const JSHandle<EcmaString> &thisString, uint32_t thisLength, uint32_t lim) CreateArrayFromString() argument 1717 CreateArrayBySplitString(JSThread *thread, EcmaVM *ecmaVm, const JSHandle<EcmaString> &thisString, const JSHandle<EcmaString> &seperatorString, uint32_t thisLength, uint32_t seperatorLength, uint32_t lim) CreateArrayBySplitString() argument 1742 CreateArrayThisStringAndSeperatorStringAreNotEmpty(JSThread *thread, EcmaVM *ecmaVm, const JSHandle<EcmaString> &thisString, const JSHandle<EcmaString> &seperatorString, uint32_t thisLength, uint32_t seperatorLength, uint32_t lim) CreateArrayThisStringAndSeperatorStringAreNotEmpty() argument [all...] |
H A D | builtins_string.h | 287 const JSHandle<EcmaString> &thisString, uint32_t thisLength, uint32_t lim = UINT32_MAX - 1); 290 uint32_t thisLength, uint32_t seperatorLength, uint32_t lim); 294 uint32_t thisLength, uint32_t seperatorLength, uint32_t lim = UINT32_MAX - 1);
|
H A D | builtins_regexp.cpp | 1442 int64_t lim = limit->GetInt(); in RegExpSplit() local 1443 if (lim >= 0) { in RegExpSplit() 1444 return RegExpSplitFast(thread, regexp, jsString, static_cast<uint32_t>(lim), useCache); in RegExpSplit() 1503 // 17. If limit is undefined, let lim be 2^32–1; else let lim be ToUint32(limit). in RegExpSplit() 1504 uint32_t lim; in RegExpSplit() local 1506 lim = MAX_SPLIT_LIMIT; in RegExpSplit() 1508 lim = JSTaggedValue::ToUint32(thread, limit); in RegExpSplit() 1509 // 18. ReturnIfAbrupt(lim). in RegExpSplit() 1517 // 21. If lim in RegExpSplit() [all...] |
Completed in 10 milliseconds