Searched refs:endPtr (Results 1 – 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/ |
D | c_string.cpp | 30 char *endPtr = nullptr; in CStringToL() local 31 int64_t result = std::strtol(str.c_str(), &endPtr, BASE); in CStringToL() 32 ASSERT(!(result == 0 && str.c_str() == endPtr) && "CString argument is not long int"); in CStringToL() 38 char *endPtr = nullptr; in CStringToLL() local 39 int64_t result = std::strtoll(str.c_str(), &endPtr, BASE); in CStringToLL() 40 ASSERT(!(result == 0 && str.c_str() == endPtr) && "CString argument is not long long int"); in CStringToLL() 46 char *endPtr = nullptr; in CStringToULL() local 47 uint64_t result = std::strtoull(str.c_str(), &endPtr, BASE); in CStringToULL() 48 …ASSERT(!(result == 0 && str.c_str() == endPtr) && "CString argument is not unsigned long long int"… in CStringToULL() 54 char *endPtr = nullptr; in CStringToF() local [all …]
|
D | linear_space.cpp | 120 uintptr_t endPtr = 0; in IterateOverObjects() local 123 endPtr = curPtr + region->GetAllocatedBytes(top); in IterateOverObjects() 125 endPtr = curPtr + region->GetAllocatedBytes(); in IterateOverObjects() 129 while (curPtr < endPtr) { in IterateOverObjects() 145 CHECK_REGION_END(curPtr, endPtr); in IterateOverObjects()
|
D | parallel_evacuator.cpp | 334 uintptr_t endPtr = 0; in UpdateNewRegionReference() local 337 endPtr = curPtr + region->GetAllocatedBytes(top); in UpdateNewRegionReference() 339 endPtr = curPtr + region->GetAllocatedBytes(); in UpdateNewRegionReference() 343 while (curPtr < endPtr) { in UpdateNewRegionReference() 360 CHECK_REGION_END(curPtr, endPtr); in UpdateNewRegionReference()
|
D | sparse_space.cpp | 280 uintptr_t endPtr = region->GetEnd(); in IterateOverObjects() local 281 while (curPtr < endPtr) { in IterateOverObjects() 298 CHECK_REGION_END(curPtr, endPtr); in IterateOverObjects()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
D | string_helper.h | 397 char *endPtr = nullptr; in StrToUInt32() local 398 *result = std::strtoul(content, &endPtr, DEC); in StrToUInt32() 399 if (endPtr == content || *endPtr != '\0') { in StrToUInt32()
|