Searched refs:curPos (Results 1 – 2 of 2) sorted by relevance
131 size_t curPos = 0; in GetStringItems() local134 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()
123 auto &curPos = isReq ? reqBufPos_ : unreqBufPos_; in Alloca() local125 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()