Searched refs:isInRange (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | TransProtectedScope.cpp | 121 isInRange(I->getLocation(), BodyRange)) { in ProtectedScopeFixer() 152 if (isInRange(Diag.getLocation(), info.Range)) { in handleProtectedNote() 184 if (isInRange(DRE->getDecl()->getLocation(), info.Range) && in hasVarReferencedOutside() 185 !isInRange(DRE->getLocation(), info.Range)) in hasVarReferencedOutside() 191 bool isInRange(SourceLocation Loc, SourceRange R) { in isInRange() function in __anon2f6a04b40111::ProtectedScopeFixer
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | Writer.cpp | 222 bool isInRange(uint16_t relType, uint64_t s, uint64_t p, int margin); 394 bool Writer::isInRange(uint16_t relType, uint64_t s, uint64_t p, int margin) { in isInRange() function in Writer 429 if (lastThunk && isInRange(type, lastThunk->getRVA(), p, margin)) in getThunk() 495 if (isInRange(rel.Type, s, p, margin)) in createThunks() 613 if (!isInRange(rel.Type, s, p, 0)) in verifyRanges()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 3571 static bool isInRange(int Val, int Low, int Hi) { in isInRange() function 3578 return llvm::any_of(Mask, [Low, Hi](int M) { return isInRange(M, Low, Hi); }); in isAnyInRange() 3589 return (Val == SM_SentinelUndef) || isInRange(Val, Low, Hi); in isUndefOrInRange() 3602 return isUndefOrZero(Val) || isInRange(Val, Low, Hi); in isUndefOrZeroOrInRange() 3658 if (isInRange(M, 0, NumElts)) in isCompletePermute() 6135 if ((Offset0 && isInRange(M, 0, NumElts)) || in getFauxShuffleMask() 6136 (Offset1 && isInRange(M, NumElts, 2 * NumElts))) in getFauxShuffleMask() 9663 [Size](int M) { return isInRange(M, 0, 2 * Size); }) && in isTargetShuffleEquivalent() 38597 assert(isInRange(Mask[0], 0, NumBaseMaskElts) && in combineX86ShuffleChain() 38668 assert(isInRange(Mask[0], 0, 2) && "Unexpected lane shuffle"); in combineX86ShuffleChain() [all …]
|