Home
last modified time | relevance | path

Searched refs:stringBegin (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot.cpp170 uintptr_t stringBegin = oldSpaceBegin + hdr.oldSpaceObjSize + hdr.nonMovableObjSize + in Deserialize() local
172 uintptr_t stringEnd = stringBegin + hdr.stringSize; in Deserialize()
173 processor.DeserializeString(stringBegin, stringEnd); in Deserialize()
Dsnapshot_processor.h70 void DeserializeString(uintptr_t stringBegin, uintptr_t stringEnd);
Dsnapshot_processor.cpp1329 void SnapshotProcessor::DeserializeString(uintptr_t stringBegin, uintptr_t stringEnd) in DeserializeString() argument
1338 while (stringBegin < stringEnd) { in DeserializeString()
1339 EcmaString *str = reinterpret_cast<EcmaString *>(stringBegin); in DeserializeString()
1378 stringBegin += strSize; in DeserializeString()