Home
last modified time | relevance | path

Searched refs:LastCheck (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopPredication.cpp629 Value *LastCheck = nullptr; in widenGuardConditions() local
631 if (!LastCheck) in widenGuardConditions()
632 LastCheck = Check; in widenGuardConditions()
634 LastCheck = Builder.CreateAnd(LastCheck, Check); in widenGuardConditions()
635 Guard->setOperand(0, LastCheck); in widenGuardConditions()
/freebsd-12.1/contrib/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp593 u64 LastCheck = atomic_load_relaxed(&RssLastCheckedAtNS); in isRssLimitExceeded() local
595 if (LIKELY(CurrentCheck < LastCheck + (100ULL * 1000000ULL))) in isRssLimitExceeded()
597 if (!atomic_compare_exchange_weak(&RssLastCheckedAtNS, &LastCheck, in isRssLimitExceeded()