| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Casting.h | 63 template <typename To, typename From, typename Enabler = void> struct isa_impl { 64 static inline bool doit(const From &Val) { return To::classof(&Val); } 68 template <typename To, typename From> 69 struct isa_impl<To, From, std::enable_if_t<std::is_base_of_v<To, From>>> { 73 template <typename To, typename From> struct isa_impl_cl { 75 return isa_impl<To, From>::doit(Val); 79 template <typename To, typename From> struct isa_impl_cl<To, const From> { 81 return isa_impl<To, From>::doit(Val); 85 template <typename To, typename From> 86 struct isa_impl_cl<To, const std::unique_ptr<From>> { [all …]
|
| H A D | GenericDomTreeConstruction.h | 649 const NodePtr From, const NodePtr To) { in InsertEdge() 652 assert(To && "Cannot be a nullptr"); in InsertEdge() 654 << BlockNamePrinter(To) << "\n"); in InsertEdge() 669 const TreeNodePtr ToTN = DT.getNode(To); in InsertEdge() 671 InsertUnreachable(DT, BUI, FromTN, To); in InsertEdge() 680 const TreeNodePtr To) { in UpdateRootsBeforeInsertion() 684 if (!DT.isVirtualRoot(To->getIDom())) return false; in UpdateRootsBeforeInsertion() 686 if (!llvm::is_contained(DT.Roots, To->getBlock())) in UpdateRootsBeforeInsertion() 689 LLVM_DEBUG(dbgs() << "\t\tAfter the insertion, " << BlockNamePrinter(To) in UpdateRootsBeforeInsertion() 737 const TreeNodePtr From, const TreeNodePtr To) { in InsertReachable() [all …]
|
| H A D | CFGUpdate.h | 34 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 D | comp.txt | 3 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 D | DynamicCastInfo.h | 22 : 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 D | RangedConstraintManager.h | 31 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() 166 RangeSet unite(RangeSet Original, llvm::APSInt From, llvm::APSInt To); 173 RangeSet getRangeSet(const llvm::APSInt &From, const llvm::APSInt &To) { in getRangeSet() argument 174 return getRangeSet(Range(From, To)); in getRangeSet() 314 RangeSet(Factory &F, const llvm::APSInt &From, const llvm::APSInt &To) in RangeSet() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | PointerUnion.h | 235 template <typename To> static inline bool isPossible(From &F) { 236 return F.Val.getInt() == FirstIndexOfType<To, PTs...>::value; 239 template <typename To> static To doCast(From &F) { 240 assert(isPossible<To>(F) && "cast to an incompatible type!"); 241 return PointerLikeTypeTraits<To>::getFromVoidPointer(F.Val.getPointer()); 246 template <typename To, typename... PTs> 247 struct CastInfo<To, PointerUnion<PTs...>> 248 : public DefaultDoCastIfPossible<To, PointerUnion<PTs...>, 249 CastInfo<To, PointerUnion<PTs...>>> { 254 return Impl::template isPossible<To>(f); [all …]
|
| H A D | iterator_range.h | 27 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/libc/src/__support/CPP/type_traits/ |
| H A D | is_convertible.h | 26 template <class From, class To> 28 -> decltype(void(cpp::declval<void (&)(To)>()(cpp::declval<From>())), 34 template <class From, class To> 37 (decltype(detail::test_returnable<To>(0))::value && 38 decltype(detail::test_implicitly_convertible<From, To>(0))::value) || 39 (cpp::is_void_v<From> && cpp::is_void_v<To>)> {}; 41 template <class From, class To> 43 is_convertible<From, To>::value;
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanUtils.h | 172 static void connectBlocks(VPBlockBase *From, VPBlockBase *To, 174 assert((From->getParent() == To->getParent()) && 179 From->appendSuccessor(To); 181 From->getSuccessors()[SuccIdx] = To; 184 To->appendPredecessor(From); 186 To->getPredecessors()[PredIdx] = From; 191 static void disconnectBlocks(VPBlockBase *From, VPBlockBase *To) { in disconnectBlocks() argument 192 assert(To && "Successor to disconnect is null."); in disconnectBlocks() 193 From->removeSuccessor(To); in disconnectBlocks() 194 To->removePredecessor(From); in disconnectBlocks() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | BottleneckAnalysis.cpp | 239 DGNode &To = Nodes[ToIID]; in propagateThroughEdges() local 244 if (Cost > To.Cost) { in propagateThroughEdges() 245 To.CriticalPredecessor = DepEdge; in propagateThroughEdges() 246 To.Cost = Cost; in propagateThroughEdges() 247 To.Depth = N.Depth + 1; in propagateThroughEdges() 249 To.NumVisitedPredecessors++; in propagateThroughEdges() 250 if (To.NumVisitedPredecessors == To.NumPredecessors) in propagateThroughEdges() 421 void DependencyGraph::addDependency(unsigned From, unsigned To, in addDependency() argument 424 DGNode &NodeTo = Nodes[To]; in addDependency() 427 auto It = find_if(Vec, [To, Dep](DependencyEdge &DE) { in addDependency() [all …]
|
| H A D | BottleneckAnalysis.h | 241 void addDependency(unsigned From, unsigned To, 257 void addRegisterDep(unsigned From, unsigned To, unsigned RegID, in addRegisterDep() argument 259 addDependency(From, To, {DependencyEdge::DT_REGISTER, RegID, Cost}); in addRegisterDep() 262 void addMemoryDep(unsigned From, unsigned To, unsigned Cost) { in addMemoryDep() argument 263 addDependency(From, To, {DependencyEdge::DT_MEMORY, /* unused */ 0, Cost}); in addMemoryDep() 266 void addResourceDep(unsigned From, unsigned To, uint64_t Mask, in addResourceDep() argument 268 addDependency(From, To, {DependencyEdge::DT_RESOURCE, Mask, Cost}); in addResourceDep() 319 void addRegisterDep(unsigned From, unsigned To, unsigned RegID, unsigned Cy); 320 void addMemoryDep(unsigned From, unsigned To, unsigned Cy); 321 void addResourceDep(unsigned From, unsigned To, uint64_t Mask, unsigned Cy);
|
| /freebsd/contrib/llvm-project/libc/src/__support/CPP/ |
| H A D | bit.h | 31 template <typename To, typename From> 33 (sizeof(To) == sizeof(From)) && 34 cpp::is_trivially_constructible<To>::value && 35 cpp::is_trivially_copyable<To>::value && 37 To> 41 return __builtin_bit_cast(To, from); in bit_cast() 43 To to; in bit_cast() 47 __builtin_memcpy_inline(dst, src, sizeof(To)); in bit_cast() 49 for (unsigned i = 0; i < sizeof(To); ++i) in bit_cast() 252 template <class To, class From> [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | release.h | 31 void releasePageRangeToOS(uptr From, uptr To) { in releasePageRangeToOS() argument 32 const uptr Size = To - From; in releasePageRangeToOS() 56 void releasePageRangeToOS(uptr From, uptr To) { in releasePageRangeToOS() argument 57 const uptr Size = To - From; in releasePageRangeToOS() 81 void releasePageRangeToOS(uptr From, uptr To) { in releasePageRangeToOS() argument 82 DCHECK_EQ((To - From) % getPageSizeCached(), 0U); in releasePageRangeToOS() 83 ReleasedPagesCount += (To - From) >> getPageSizeLogCached(); in releasePageRangeToOS() 95 void releasePageRangeToOS(uptr From, uptr To) { in releasePageRangeToOS() argument 96 for (uptr I = From / getPageSizeCached(); I < To / getPageSizeCached(); ++I) in releasePageRangeToOS() 295 void incRange(uptr Region, uptr From, uptr To) const { in incRange() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | VarBypassDetector.cpp | 160 void VarBypassDetector::Detect(unsigned From, unsigned To) { in Detect() argument 161 while (From != To) { in Detect() 162 if (From < To) { in Detect() 163 assert(Scopes[To].first < To); in Detect() 164 const auto &ScopeTo = Scopes[To]; in Detect() 165 To = ScopeTo.first; in Detect()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaFixItUtils.cpp | 23 CanQualType To, in compareTypesSimple() argument 27 if (!To.isAtLeastAsQualifiedAs(From, S.getASTContext())) 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, S.getASTContext())) in compareTypesSimple()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SimpleConstraintManager.cpp | 96 const llvm::APSInt &To, bool InRange) { in assumeInclusiveRangeInternal() argument 98 assert(From.isUnsigned() == To.isUnsigned() && in assumeInclusiveRangeInternal() 99 From.getBitWidth() == To.getBitWidth() && in assumeInclusiveRangeInternal() 106 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal() 117 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRangeInternal() 123 bool IsInRange = IntVal >= From && IntVal <= To; in assumeInclusiveRangeInternal()
|
| /freebsd/tools/test/stress2/ |
| H A D | README | 13 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/llvm/lib/Transforms/Vectorize/SandboxVectorizer/ |
| H A D | DependencyGraph.cpp | 418 void DependencyGraph::notifyMoveInstr(Instruction *I, const BBIterator &To) { in notifyMoveInstr() argument 423 BasicBlock *BB = To.getNodeParent(); in notifyMoveInstr() 424 assert(!(To != BB->end() && &*To == I->getNextNode()) && in notifyMoveInstr() 425 !(To == BB->end() && std::next(I->getIterator()) == BB->end()) && in notifyMoveInstr() 430 assert(To.getNodeParent() == I->getParent() && in notifyMoveInstr() 433 (To == std::next(DAGInterval.bottom()->getIterator()) || in notifyMoveInstr() 434 (To != BB->end() && std::next(To) == DAGInterval.top()->getIterator()) || in notifyMoveInstr() 435 (To != BB->end() && DAGInterval.contains(&*To))) && in notifyMoveInstr() 443 DAGInterval.notifyMoveInstr(I, To); in notifyMoveInstr() 471 if (To == BB->end() || in notifyMoveInstr() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | SuspendCrossingInfo.cpp | 71 BasicBlock *To) const { in hasPathCrossingSuspendPoint() 73 size_t const ToIndex = Mapping.blockToIndex(To); in hasPathCrossingSuspendPoint() 75 LLVM_DEBUG(if (Result) dbgs() << From->getName() << " => " << To->getName() in hasPathCrossingSuspendPoint() 81 BasicBlock *From, BasicBlock *To) const { in hasPathOrLoopCrossingSuspendPoint() 83 size_t const ToIndex = Mapping.blockToIndex(To); in hasPathOrLoopCrossingSuspendPoint() 85 (From == To && Block[ToIndex].KillLoop); in hasPathOrLoopCrossingSuspendPoint() 86 LLVM_DEBUG(if (Result) dbgs() << From->getName() << " => " << To->getName() in hasPathOrLoopCrossingSuspendPoint()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| H A D | GIMatchDag.cpp | |
| /freebsd/usr.bin/fortune/datfiles/ |
| H A D | freebsd-tips | 138 "/search_word". To repeat the same search, type "n" for next or "p" for 161 Need to see the calendar for this month? Simply type "cal". To see the 190 learned it, but somewhat user-unfriendly. To use ee (an easier but less 196 To change an environment variable in /bin/sh use: 201 To change an environment variable in tcsh you use: setenv NAME "value" 204 To clear the screen, use "clear". To re-display your screen buffer, press 211 To determine whether a file is a text file, executable, or some other type 217 To do a fast search for a file, try 224 To erase a line you've written at the command prompt, use "Ctrl-U". 227 To find out the hostname associated with an IP address, use [all …]
|
| /freebsd/contrib/dialog/samples/copifuncs/ |
| H A D | ifpatch | 18 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/contrib/googletest/googlemock/include/gmock/internal/ |
| H A D | gmock-internal-utils.h | 183 template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To> 195 (((sizeof(From) < sizeof(To)) && 196 !(std::is_signed<From>::value && !std::is_signed<To>::value)) || 199 ((sizeof(From) == sizeof(To)) && 200 (std::is_signed<From>::value == std::is_signed<To>::value))) 204 : (kFromKind == kFloatingPoint && (sizeof(From) <= sizeof(To))) ? true 216 template <typename From, typename To> 219 GMOCK_KIND_OF_(To), To>;
|
| /freebsd/contrib/unifdef/ |
| H A D | INSTALL | 10 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
|