Searched refs:RStr (Results 1 – 2 of 2) sorted by relevance
217 static const std::regex RStr("^(\\d+)(?:,(\\d+))*$"); in parseAnnotation() local218 if (std::smatch MatchStr; std::regex_match(Item, MatchStr, RStr)) { in parseAnnotation()
1494 StringRef LStr, RStr; in optimizeMemCmpVarSize() local1496 !getConstantStringInfo(RHS, RStr, /*TrimAtNul=*/false)) in optimizeMemCmpVarSize()1506 for (uint64_t MinSize = std::min(LStr.size(), RStr.size()); ; ++Pos) { in optimizeMemCmpVarSize()1508 (StrNCmp && (LStr[Pos] == '\0' && RStr[Pos] == '\0'))) { in optimizeMemCmpVarSize()1516 if (LStr[Pos] != RStr[Pos]) in optimizeMemCmpVarSize()1522 int IRes = UChar(LStr[Pos]) < UChar(RStr[Pos]) ? -1 : 1; in optimizeMemCmpVarSize()