Home
last modified time | relevance | path

Searched refs:numLeft (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Darm64-ccmp-heuristics.ll31 %numLeft.091 = phi i32 [ 0, %entry ], [ %numLeft.1, %for.inc ]
166 %inc = add nsw i32 %numLeft.091, 1
170numLeft.1 = phi i32 [ %numLeft.091, %if.then9 ], [ %numLeft.091, %if.then20 ], [ %numLeft.091, %if…
177 %numLeft.0.lcssa = phi i32 [ 0, %entry ], [ %numLeft.1, %for.inc ]
178 ret i32 %numLeft.0.lcssa
/llvm-project-15.0.7/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp246 if (P->Demangler.numLeft() != 0) in addEquivalence()
/llvm-project-15.0.7/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2488 size_t numLeft() const { return static_cast<size_t>(Last - First); } in numLeft() function
2919 if (numLeft() < Length || Length == 0) in parseSourceName()
3019 if (numLeft() < 2) in parseOperatorEncoding()
3447 if (numLeft() == 0 || !std::isdigit(*First)) in parseNumber()
3449 while (numLeft() != 0 && std::isdigit(*First)) in parseNumber()
3470 if (parsePositiveInteger(&Int) || numLeft() < Int) in parseBareSourceName()
4685 if (numLeft() < 2) in parseExpr()
5122 if (numLeft() <= N)
5447 if (numLeft() != 0)
5461 if (numLeft() != 0)
[all …]
/llvm-project-15.0.7/libcxxabi/src/demangle/
H A DItaniumDemangle.h2488 size_t numLeft() const { return static_cast<size_t>(Last - First); } in numLeft() function
2919 if (numLeft() < Length || Length == 0) in parseSourceName()
3019 if (numLeft() < 2) in parseOperatorEncoding()
3447 if (numLeft() == 0 || !std::isdigit(*First)) in parseNumber()
3449 while (numLeft() != 0 && std::isdigit(*First)) in parseNumber()
3470 if (parsePositiveInteger(&Int) || numLeft() < Int) in parseBareSourceName()
4685 if (numLeft() < 2) in parseExpr()
5122 if (numLeft() <= N)
5447 if (numLeft() != 0)
5461 if (numLeft() != 0)
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp397 if (!llvm::StringRef(currentParserPos(), this->numLeft()).startswith(From)) in trySubstitute()