Home
last modified time | relevance | path

Searched refs:Exact (Results 1 – 25 of 28) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp764 const KnownBits &RHS, bool Exact) { in divComputeLowBit() argument
766 if (!Exact) in divComputeLowBit()
800 bool Exact) { in sdiv() argument
803 return udiv(LHS, RHS, Exact); in sdiv()
828 if (Exact || (-LHS.getSignedMaxValue()).uge(RHS.getSignedMaxValue())) { in sdiv()
835 if (Exact || LHS.getSignedMinValue().uge(-RHS.getSignedMinValue())) { in sdiv()
852 Known = divComputeLowBit(Known, LHS, RHS, Exact); in sdiv()
859 bool Exact) { in udiv() argument
881 Known = divComputeLowBit(Known, LHS, RHS, Exact); in udiv()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp243 bool Exact; in calcRange() local
246 &Exact); in calcRange()
413 bool Exact; in convert() local
416 &Exact); in convert()
/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp52 m_match_type(Breakpoint::Exact), m_language(language), in BreakpointResolverName()
64 m_match_type(Breakpoint::Exact), m_language(language), in BreakpointResolverName()
177 Breakpoint::MatchType::Exact, offset, skip_prologue); in CreateFromStructuredData()
271 case Breakpoint::Exact: in SearchCallback()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddressResolver.h35 enum MatchType { Exact, Regexp, Glob }; enumerator
/freebsd-14.2/sys/contrib/device-tree/Bindings/clock/
H A Dpwm-clock.yaml20 description: Exact output frequency, in case the PWM period is not exact
H A Dpwm-clock.txt16 - clock-frequency : Exact output frequency, in case the PWM period
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h1122 for (int Exact : Exacts) in setRequiresImmediate() local
1123 ImmSet.insert(Exact); in setRequiresImmediate()
1125 void setRequiresImmediate(int Exact) { in setRequiresImmediate()
1127 ImmSet.insert(Exact); in setRequiresImmediate()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h364 bool Exact = false);
368 bool Exact = false);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp170 eLanguageTypeUnknown, Breakpoint::Exact, 0, eLazyBoolNo); in CreateExceptionResolver()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h88 enum MatchType { Exact, Regexp, Glob }; enumerator
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.cpp104 eFunctionNameTypeBase, eLanguageTypeUnknown, Breakpoint::Exact, 0, in CreateExceptionResolver()
H A DAppleObjCRuntimeV2.cpp1182 eFunctionNameTypeBase, eLanguageTypeUnknown, Breakpoint::Exact, 0, in CreateExceptionResolver()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h383 bool Exact : 1;
406 : NoUnsignedWrap(false), NoSignedWrap(false), Exact(false),
426 void setExact(bool b) { Exact = b; }
442 bool hasExact() const { return Exact; }
460 Exact &= Flags.Exact;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstrTypes.h371 DEFINE_HELPERS(SDiv, Exact) // CreateExactSDiv
372 DEFINE_HELPERS(UDiv, Exact) // CreateExactUDiv
373 DEFINE_HELPERS(AShr, Exact) // CreateExactAShr
374 DEFINE_HELPERS(LShr, Exact) // CreateExactLShr
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h863 Exact,
877 ExitCountKind Kind = Exact);
889 const SCEV *getBackedgeTakenCount(const Loop *L, ExitCountKind Kind = Exact);
/freebsd-14.2/crypto/openssl/doc/man7/
H A DOSSL_PROVIDER-default.pod43 Some implementations may define additional properties. Exact information is
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp790 bool Exact = (Dist % IVBump) == 0; in computeCount() local
793 if (!Exact) in computeCount()
/freebsd-14.2/contrib/one-true-awk/testdir/
H A Dfunstack.ok558 J. A. Howell ACM Algorithm 406: Exact Solution of
1173 D. L. March ACM Algorithm 434: Exact Probabilities
1370 J. A. Howell Exact solution of linear equations using
1807 D. M. Boulton Exact probabilities for R*C contingency
1997 J. Pomeranz ACM Algorithm 487: Exact Cumulative
3571 D. M. Boulton Remark on ``Algorithm 434: Exact
3580 J. Pomeranz Remark on ``Algorithm 487: Exact
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp8183 auto *ExitCount = dyn_cast<SCEVConstant>(getBackedgeTakenCount(L, Exact)); in getSmallConstantTripCount()
8260 case Exact: in getExitCount()
8279 case Exact: in getBackedgeTakenCount()
10482 const SCEV *Exact = in howFarToZero() local
10485 if (Exact != getCouldNotCompute()) { in howFarToZero()
10486 APInt MaxInt = getUnsignedRangeMax(applyLoopGuards(Exact, L)); in howFarToZero()
10488 getConstant(APIntOps::umin(MaxInt, getUnsignedRangeMax(Exact))); in howFarToZero()
10491 isa<SCEVCouldNotCompute>(Exact) ? ConstantMax : Exact; in howFarToZero()
10492 return ExitLimit(Exact, ConstantMax, SymbolicMax, false, Predicates); in howFarToZero()
/freebsd-14.2/contrib/tzdata/
H A Dbackzone579 # Exact date unknown
581 # Exact date in October unknown; Sunday October 1 is a reasonable guess.
583 # Exact date in June unknown; Sunday June 2 is a reasonable guess.
/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_itt.inl111 Exact moment of call does not matter, but it should be completed before any
/freebsd-14.2/sys/contrib/zstd/programs/
H A Dzstd.1.md207 Exact guesses result in better compression ratios. Overestimates result in slightly
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp1235 auto AccessCB = [&](const Access &Acc, bool Exact) { in forallInterferingAccesses() argument
1245 if (Exact && Acc.isMustAccess() && Acc.getRemoteInst() != &I) { in forallInterferingAccesses()
1254 bool Dominates = FindInterferingWrites && DT && Exact && in forallInterferingAccesses()
1264 InterferingAccesses.push_back({&Acc, Exact}); in forallInterferingAccesses()
1284 auto CanSkipAccess = [&](const Access &Acc, bool Exact) { in forallInterferingAccesses() argument
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp509 nullptr, func_name, func_name_type_mask, language, Breakpoint::Exact, in CreateBreakpoint()
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp6502 bool Exact = EatIfPresent(lltok::kw_exact); in parseInstruction() local
6506 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true); in parseInstruction()

12