Home
last modified time | relevance | path

Searched refs:To (Results 1 – 25 of 1234) sorted by relevance

12345678910>>...50

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCasting.h69 struct isa_impl<To, From, std::enable_if_t<std::is_base_of_v<To, From>>> {
79 template <typename To, typename From> struct isa_impl_cl<To, const From> {
93 template <typename To, typename From> struct isa_impl_cl<To, From *> {
100 template <typename To, typename From> struct isa_impl_cl<To, From *const> {
107 template <typename To, typename From> struct isa_impl_cl<To, const From *> {
152 template <class To, class From> struct cast_retty_impl<To, const From> {
156 template <class To, class From> struct cast_retty_impl<To, From *> {
160 template <class To, class From> struct cast_retty_impl<To, const From *> {
302 static To castFailed() { return To(nullptr); }
335 static inline To doCast(From *f) { return To(f); }
[all …]
H A DGenericDomTreeConstruction.h650 assert(To && "Cannot be a nullptr"); in InsertEdge()
667 const TreeNodePtr ToTN = DT.getNode(To); in InsertEdge()
743 (From->getBlock() && To->getBlock()) in InsertReachable()
763 if (NCDLevel + 1 >= To->getLevel()) in InsertReachable()
768 II.Bucket.push(To); in InsertReachable()
769 II.Visited.insert(To); in InsertReachable()
932 const TreeNodePtr ToTN = DT.getNode(To); in DeleteEdge()
1053 const TreeNodePtr TN = DT.getNode(To); in DeleteUnreachable()
1057 AffectedQueue.push_back(To); in DeleteUnreachable()
1475 return From != BB && To != BB; in verifyParentProperty()
[all …]
H A DCFGUpdate.h34 Update(UpdateKind Kind, NodePtr From, NodePtr To) in Update() argument
35 : From(From), ToAndKind(To, Kind) {} in Update()
76 NodePtr To = U.getTo();
78 std::swap(From, To); // Reverse edge for postdominators.
80 Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1);
/freebsd/crypto/openssl/demos/cms/
H A Dcomp.txt3 Some Text To be Compressed
4 Some Text To be Compressed
5 Some Text To be Compressed
6 Some Text To be Compressed
7 Some Text To be Compressed
8 Some Text To be Compressed
9 Some Text To be Compressed
10 Some Text To be Compressed
11 Some Text To be Compressed
12 Some Text To be Compressed
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicCastInfo.h22 : From(from), To(to), ResultKind(resultKind) {} in DynamicCastInfo()
25 QualType to() const { return To; } in to()
28 return From == from && To == to; in equals()
35 return From == RHS.From && To == RHS.To;
38 return From < RHS.From && To < RHS.To;
43 ID.Add(To); in Profile()
48 QualType From, To;
H A DRangedConstraintManager.h31 Range(const llvm::APSInt &From, const llvm::APSInt &To) : Impl(&From, &To) { in Range() argument
32 assert(From <= To); in Range()
38 return From() <= Point && Point <= To(); in Includes()
41 const llvm::APSInt &To() const { return *Impl.second; } in To() function
43 return &From() == &To() ? &From() : nullptr; in getConcreteValue()
48 ID.AddPointer(&To()); in Profile()
174 return getRangeSet(Range(From, To)); in getRangeSet()
315 : RangeSet(F.getRangeSet(From, To)) {} in RangeSet()
423 const llvm::APSInt &To,
468 const llvm::APSInt &To, const llvm::APSInt &Adjustment) = 0;
[all …]
H A DSVals.h485 template <typename To, typename From>
487 To, From,
489 : public CastIsPossible<To, ::clang::ento::SVal> {
491 To, From,
494 return To::classof(*static_cast<const ::clang::ento::SVal *>(&V));
496 static std::optional<To> castFailed() { return std::optional<To>{}; }
497 static To doCast(const From &f) {
498 return *static_cast<const To *>(cast<::clang::ento::SVal>(&f));
500 static std::optional<To> doCastIfPossible(const From &f) {
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPointerUnion.h229 template <typename To> static inline bool isPossible(From &F) {
230 return F.Val.getInt() == FirstIndexOfType<To, PTs...>::value;
233 template <typename To> static To doCast(From &F) {
240 template <typename To, typename... PTs>
241 struct CastInfo<To, PointerUnion<PTs...>>
242 : public DefaultDoCastIfPossible<To, PointerUnion<PTs...>,
248 return Impl::template isPossible<To>(f);
251 static To doCast(From &f) { return Impl::template doCast<To>(f); }
253 static inline To castFailed() { return To(); }
256 template <typename To, typename... PTs>
[all …]
H A Diterator_range.h27 template <typename From, typename To, typename = void>
30 template <typename From, typename To>
32 From, To,
33 std::void_t<decltype(static_cast<To>(
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.cpp240 DGNode &To = Nodes[ToIID]; in propagateThroughEdges() local
245 if (Cost > To.Cost) { in propagateThroughEdges()
247 To.Cost = Cost; in propagateThroughEdges()
248 To.Depth = N.Depth + 1; in propagateThroughEdges()
250 To.NumVisitedPredecessors++; in propagateThroughEdges()
251 if (To.NumVisitedPredecessors == To.NumPredecessors) in propagateThroughEdges()
424 DGNode &NodeTo = Nodes[To]; in addDependency()
454 bool IsLoopCarried = From >= To; in addRegisterDep()
466 bool IsLoopCarried = From >= To; in addMemoryDep()
478 bool IsLoopCarried = From >= To; in addResourceDep()
[all …]
H A DBottleneckAnalysis.h238 void addDependency(unsigned From, unsigned To,
254 void addRegisterDep(unsigned From, unsigned To, unsigned RegID, in addRegisterDep() argument
256 addDependency(From, To, {DependencyEdge::DT_REGISTER, RegID, Cost}); in addRegisterDep()
259 void addMemoryDep(unsigned From, unsigned To, unsigned Cost) { in addMemoryDep() argument
260 addDependency(From, To, {DependencyEdge::DT_MEMORY, /* unused */ 0, Cost}); in addMemoryDep()
263 void addResourceDep(unsigned From, unsigned To, uint64_t Mask, in addResourceDep() argument
265 addDependency(From, To, {DependencyEdge::DT_RESOURCE, Mask, Cost}); in addResourceDep()
316 void addRegisterDep(unsigned From, unsigned To, unsigned RegID, unsigned Cy);
317 void addMemoryDep(unsigned From, unsigned To, unsigned Cy);
318 void addResourceDep(unsigned From, unsigned To, uint64_t Mask, unsigned Cy);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp155 void VarBypassDetector::Detect(unsigned From, unsigned To) { in Detect() argument
156 while (From != To) { in Detect()
157 if (From < To) { in Detect()
158 assert(Scopes[To].first < To); in Detect()
159 const auto &ScopeTo = Scopes[To]; in Detect()
160 To = ScopeTo.first; in Detect()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Drelease.h33 void releasePageRangeToOS(uptr From, uptr To) { in releasePageRangeToOS() argument
34 const uptr Size = To - From; in releasePageRangeToOS()
62 void releasePageRangeToOS(uptr From, uptr To) { in releasePageRangeToOS() argument
63 const uptr Size = To - From; in releasePageRangeToOS()
288 DCHECK_LE(From, To); in incRange()
289 const uptr Top = Min(To + 1, NumCounters); in incRange()
306 DCHECK_LE(From, To); in setAsAllCountedRange()
454 DCHECK_LT(From, To); in markRangeAsAllCounted()
455 DCHECK_LE(To, Base + RegionSize); in markRangeAsAllCounted()
457 DCHECK_LE(To - From, RegionSize); in markRangeAsAllCounted()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFixItUtils.cpp23 CanQualType To, in compareTypesSimple() argument
27 if (!To.isAtLeastAsQualifiedAs(From)) in compareTypesSimple()
31 To = To.getNonReferenceType(); in compareTypesSimple()
34 if (isa<PointerType>(From) && isa<PointerType>(To)) { in compareTypesSimple()
37 To = S.Context.getCanonicalType( in compareTypesSimple()
38 (cast<PointerType>(To))->getPointeeType()); in compareTypesSimple()
42 const CanQualType ToUnq = To.getUnqualifiedType(); in compareTypesSimple()
45 To.isAtLeastAsQualifiedAs(From)) in compareTypesSimple()
/freebsd/tools/test/stress2/
H A DREADME13 To run the full test suite type "make test" in the stress2 directory.
15 To run a subset of tests, go to the stress2/misc directory.
16 To run for example all tmpfs tests, type ./all.sh -o $(grep -l tmpfs *.sh)
17 To run fdatasync.sh for one hour, type ./all.sh -m 60 fdatasync.sh"
18 To run dup2.sh three times, type ./all.sh -l 3 dup2.sh
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp97 const llvm::APSInt &To, bool InRange) { in assumeInclusiveRangeInternal() argument
99 assert(From.isUnsigned() == To.isUnsigned() && in assumeInclusiveRangeInternal()
100 From.getBitWidth() == To.getBitWidth() && in assumeInclusiveRangeInternal()
107 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal()
118 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal()
124 bool IsInRange = IntVal >= From && IntVal <= To; in assumeInclusiveRangeInternal()
H A DRangeConstraintManager.cpp188 if (First->To() > Second->To()) { in unite()
248 while (First->To() >= Second->To()) { in unite()
565 if (Second->To() > First->To()) { in intersect()
627 const llvm::APSInt &To = It->To(); in negate() local
631 if (To == MAX) { in negate()
652 if (To != MIN) { in negate()
729 APSInt ToInt = R.To(); in truncateTo()
1360 To.testInRange(Origin.To(), false) != APSIntType::RTR_Within) { in convert()
1364 ValueFactory.Convert(To, Origin.To())); in convert()
1741 const llvm::APSInt &Max = std::min(LHS.To(), RHS.To()); in VisitBinaryOperator()
[all …]
/freebsd/contrib/dialog/samples/copifuncs/
H A Difpatch18 if (!strcasecmp(msg->key,"Return-Receipt-To")) return 1;
29 if (!strcasecmp(msg->key,"To"))
36 - if (!strcasecmp(msg->key,"Reply-To")) return 2;
37 + if (!strcasecmp(msg->key,"Reply-To"))
50 if (!strcasecmp(msg->key,"Comment-To")) return 0;
51 if (!strcasecmp(msg->key,"X-Comment-To")) return 0;
/freebsd/usr.bin/fortune/datfiles/
H A Dfreebsd-tips196 To change an environment variable in /bin/sh use:
204 To clear the screen, use "clear". To re-display your screen buffer, press
217 To do a fast search for a file, try
239 To quickly create an empty file, use "touch filename".
284 To see the last 10 lines of a long file, use "tail filename". To see the
292 To see the MAC addresses of the NICs on your system, type
430 To remove an alias, you can usually use 'unalias aliasname'. To list all
608 To unset a quota, assign "none" as the value.
678 To sort in descending order instead, use -S:
713 To delete d and all later snapshots:
[all …]
/freebsd/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h182 template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To>
194 (((sizeof(From) < sizeof(To)) &&
195 !(std::is_signed<From>::value && !std::is_signed<To>::value)) ||
198 ((sizeof(From) == sizeof(To)) &&
199 (std::is_signed<From>::value == std::is_signed<To>::value)))
203 : (kFromKind == kFloatingPoint && (sizeof(From) <= sizeof(To))) ? true
215 template <typename From, typename To>
218 GMOCK_KIND_OF_(To), To>;
/freebsd/contrib/unifdef/
H A DINSTALL10 To build on Unix, type `make`. You can adjust the compilation options
13 To install in your home directory, type `make install`
22 To build with MinGW, type `mingw32-make -f win32/Makefile.mingw`.
26 pre-generated version.h but the git repository does not. To build from
29 To update version.h, right-click on the fanf2/unifdef repository and
/freebsd/contrib/libcbor/examples/bazel/
H A DREADME.md7 To build the project:
15 To test the code:
23 To run the demo:
/freebsd/sys/contrib/device-tree/src/arm64/apple/
H A Dt6002.dtsi72 cpu-release-addr = <0 0>; /* To be filled by loader */
86 cpu-release-addr = <0 0>; /* To be filled by loader */
100 cpu-release-addr = <0 0>; /* To be filled by loader */
114 cpu-release-addr = <0 0>; /* To be filled by loader */
128 cpu-release-addr = <0 0>; /* To be filled by loader */
142 cpu-release-addr = <0 0>; /* To be filled by loader */
156 cpu-release-addr = <0 0>; /* To be filled by loader */
170 cpu-release-addr = <0 0>; /* To be filled by loader */
184 cpu-release-addr = <0 0>; /* To be filled by loader */
198 cpu-release-addr = <0 0>; /* To be filled by loader */
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMCAsmParserExtension.cpp37 StringRef To; in ParseDirectiveCGProfile() local
39 if (getParser().parseIdentifier(To)) in ParseDirectiveCGProfile()
55 MCSymbol *ToSym = getContext().getOrCreateSymbol(To); in ParseDirectiveCGProfile()
/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DBlockVerifier.cpp63 Error BlockVerifier::transition(State To) { in transition() argument
117 recordToString(CurrentRecord).data(), recordToString(To).data()); in transition()
121 if (CurrentRecord == State::EndOfBuffer && To != State::NewBuffer) in transition()
128 if ((Destinations & ToSet(mask(To))) == 0) in transition()
132 recordToString(CurrentRecord).data(), recordToString(To).data()); in transition()
134 CurrentRecord = To; in transition()

12345678910>>...50