Searched refs:Boundary (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcommon.h29 inline constexpr uptr roundUpTo(uptr X, uptr Boundary) { argument
30 return (X + Boundary - 1) & ~(Boundary - 1);
33 inline constexpr uptr roundDownTo(uptr X, uptr Boundary) { argument
34 return X & ~(Boundary - 1);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_allocator.h63 constexpr uptr RoundUpTo(uptr Size, uptr Boundary) { argument
64 return (Size + Boundary - 1) & ~(Boundary - 1);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp763 SlotIndex Boundary = Idx.getBoundaryIndex(); local
764 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Boundary);
767 return Boundary.getNextSlot();
770 MachineInstr *MI = LIS.getInstructionFromIndex(Boundary);
784 VNInfo *VNI = defFromParent(0, ParentVNI, Boundary, *MI->getParent(),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp245 CHRScope *split(Region *Boundary) { argument
246 assert(Boundary && "Boundary null");
247 assert(RegInfos.begin()->R != Boundary &&
250 [&Boundary](const RegInfo& RI) {
251 return Boundary == RI.R;
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp3403 SourceLocation Boundary = getNameInfo().getBeginLoc(); local
3404 if (RTRange.isInvalid() || Boundary.isInvalid() ||
3405 !SM.isBeforeInTranslationUnit(RTRange.getEnd(), Boundary))
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp2026 unsigned Boundary; local
2027 if (Value.getAsInteger(10, Boundary) || Boundary < 16 ||
2028 !llvm::isPowerOf2_64(Boundary)) {
2034 Args.MakeArgString("-x86-align-branch-boundary=" + Twine(Boundary)));

Completed in 108 milliseconds