Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsics.cpp670 StringRef RHSStr; in lookupLLVMIntrinsicByName() local
672 RHSStr = IntrinsicNameTable[RHS]; in lookupLLVMIntrinsicByName()
674 RHSStr = RHS; in lookupLLVMIntrinsicByName()
676 return strncmp(LHSStr.data() + CmpStart, RHSStr.data() + CmpStart, in lookupLLVMIntrinsicByName()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterp.cpp2020 StringRef RHSStr((const char *)RHS.atIndex(0).getRawAddress(), RHSLength); in arePotentiallyOverlappingStringLiterals() local
2029 RHSStr = RHSStr.drop_front(IndexDiff); in arePotentiallyOverlappingStringLiterals()
2038 Longer = RHSStr; in arePotentiallyOverlappingStringLiterals()
2041 Shorter = RHSStr; in arePotentiallyOverlappingStringLiterals()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp13099 std::string RHSStr = std::string(Lexer::getSourceText( in diagnoseXorMisusedAsPow() local
13105 RHSStr = "-" + RHSStr; in diagnoseXorMisusedAsPow()
13107 RHSStr = "+" + RHSStr; in diagnoseXorMisusedAsPow()
13111 StringRef RHSStrRef = RHSStr; in diagnoseXorMisusedAsPow()
13128 std::string SuggestedExpr = "1 << " + RHSStr; in diagnoseXorMisusedAsPow()
13135 << ExprStr << toString(XorValue, 10, true) << ("1LL << " + RHSStr) in diagnoseXorMisusedAsPow()
13136 << FixItHint::CreateReplacement(ExprRange, "1LL << " + RHSStr); in diagnoseXorMisusedAsPow()
13151 << ("0x2 ^ " + RHSStr) << SuggestXor; in diagnoseXorMisusedAsPow()
13158 << ("0xA ^ " + RHSStr) << SuggestXor; in diagnoseXorMisusedAsPow()