Home
last modified time | relevance | path

Searched refs:curPos (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_frontend/es2panda/util/
DsymbolTable.cpp131 size_t curPos = 0; in GetStringItems() local
134 while ((curPos = input.find(separator, lastPos)) != std::string_view::npos) { in GetStringItems()
135 auto token = input.substr(lastPos, curPos - lastPos); in GetStringItems()
139 lastPos = curPos + separator.size(); in GetStringItems()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_codegen.cpp123 auto &curPos = isReq ? reqBufPos_ : unreqBufPos_; in Alloca() local
125 if (curPos + size > limit) { in Alloca()
126 LOG_COMPILER(FATAL) << std::hex << "Alloca Section failed. Current curPos:" << curPos in Alloca()
131 curPos = AlignUp(curPos, alignSize); in Alloca()
133 addr = bufBegin + curPos; in Alloca()
134 curPos += size; in Alloca()