Home
last modified time | relevance | path

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

12345678910>>...44

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCasting.h66 To, From, typename std::enable_if<std::is_base_of<To, From>::value>::type> {
76 template <typename To, typename From> struct isa_impl_cl<To, const From> {
90 template <typename To, typename From> struct isa_impl_cl<To, From*> {
97 template <typename To, typename From> struct isa_impl_cl<To, From*const> {
104 template <typename To, typename From> struct isa_impl_cl<To, const From*> {
111 template <typename To, typename From> struct isa_impl_cl<To, const From*const> {
158 template<class To, class From> struct cast_retty_impl<To, const From> {
162 template<class To, class From> struct cast_retty_impl<To, From*> {
166 template<class To, class From> struct cast_retty_impl<To, const From*> {
170 template<class To, class From> struct cast_retty_impl<To, const From*const> {
[all …]
H A DGenericDomTreeConstruction.h644 assert(To && "Cannot be a nullptr"); in InsertEdge()
664 const TreeNodePtr ToTN = DT.getNode(To); in InsertEdge()
732 (From->getBlock() && To->getBlock()) in InsertReachable()
744 if (NCD == To || NCD == ToIDom) return; in InsertReachable()
750 II.Affected.insert(To); in InsertReachable()
751 const unsigned ToLevel = To->getLevel(); in InsertReachable()
754 II.Bucket.push({ToLevel, To}); in InsertReachable()
937 const TreeNodePtr ToTN = DT.getNode(To); in DeleteEdge()
1063 AffectedQueue.push_back(To); in DeleteUnreachable()
1506 return From != BB && To != BB; in verifyParentProperty()
[all …]
H A DCFGUpdate.h35 Update(UpdateKind Kind, NodePtr From, NodePtr To) in Update() argument
36 : From(From), ToAndKind(To, Kind) {} in Update()
77 NodePtr To = U.getTo(); in LegalizeUpdates() local
79 std::swap(From, To); // Reverse edge for postdominators. in LegalizeUpdates()
81 Operations[{From, To}] += (U.getKind() == UpdateKind::Insert ? 1 : -1); in LegalizeUpdates()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DDomTreeUpdater.cpp27 const auto *To = Update.getTo(); in isUpdateValid() local
35 successors(From), [To](const BasicBlock *B) { return B == To; }); in isUpdateValid()
324 if (From == To) in insertEdge()
329 DT->insertEdge(From, To); in insertEdge()
339 if (From == To) in insertEdgeRelaxed()
350 DT->insertEdge(From, To); in insertEdgeRelaxed()
370 if (From == To) in deleteEdge()
375 DT->deleteEdge(From, To); in deleteEdge()
385 if (From == To) in deleteEdgeRelaxed()
396 DT->deleteEdge(From, To); in deleteEdgeRelaxed()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A Dbit.h26 template <typename To, typename From
27 , typename = typename std::enable_if<sizeof(To) == sizeof(From)>::type
30 , typename = typename std::is_trivially_constructible<To>::type
32 , typename = typename std::enable_if<__is_trivially_constructible(To)>::type
38 , typename = typename std::enable_if<std::is_trivially_copyable<To>::value>::type
41 , typename = typename std::enable_if<__is_trivially_copyable(To)>::type
51 inline To bit_cast(const From &from) noexcept { in bit_cast()
52 To to; in bit_cast()
53 std::memcpy(&to, &from, sizeof(To)); in bit_cast()
/freebsd-12.1/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h207 template <typename To>
212 template <typename To>
223 template <typename From, typename To>
228 ((sizeof(From) < sizeof(To)) &&
231 ((sizeof(From) == sizeof(To)) &&
238 template <typename From, typename To>
248 template <typename From, typename To>
254 template <typename From, typename To>
256 kFloatingPoint, From, kFloatingPoint, To>
266 template <typename From, typename To>
[all …]
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DCFLGraph.h131 auto *ToInfo = getNode(To);
134 FromInfo->Edges.push_back(Edge{To, Offset});
223 assert(From != nullptr && To != nullptr);
227 if (To != From) {
228 addNode(To);
235 assert(From != nullptr && To != nullptr); in addDerefEdge()
244 addNode(To); in addDerefEdge()
249 Graph.addNode(InstantiatedValue{To, 1}); in addDerefEdge()
254 void addLoadEdge(Value *From, Value *To) { addDerefEdge(From, To, true); } in addLoadEdge() argument
255 void addStoreEdge(Value *From, Value *To) { addDerefEdge(From, To, false); } in addStoreEdge() argument
[all …]
H A DAliasAnalysisSummary.h152 InterfaceValue From, To; member
157 return LHS.From == RHS.From && LHS.To == RHS.To && LHS.Offset == RHS.Offset;
167 if (LHS.To < RHS.To)
169 if (LHS.To > RHS.To)
229 InstantiatedValue From, To; member
H A DAliasAnalysisSummary.cpp89 auto To = instantiateInterfaceValue(ERelation.To, CS); in instantiateExternalRelation() local
90 if (!To) in instantiateExternalRelation()
92 return InstantiatedRelation{*From, *To, ERelation.Offset}; in instantiateExternalRelation()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DVarBypassDetector.cpp156 void VarBypassDetector::Detect(unsigned From, unsigned To) { in Detect() argument
157 while (From != To) { in Detect()
158 if (From < To) { in Detect()
159 assert(Scopes[To].first < To); in Detect()
160 const auto &ScopeTo = Scopes[To]; in Detect()
161 To = ScopeTo.first; in Detect()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaFixItUtils.cpp24 CanQualType To, in compareTypesSimple() argument
28 if (!To.isAtLeastAsQualifiedAs(From)) in compareTypesSimple()
32 To = To.getNonReferenceType(); in compareTypesSimple()
35 if (isa<PointerType>(From) && isa<PointerType>(To)) { in compareTypesSimple()
38 To = S.Context.getCanonicalType( in compareTypesSimple()
39 (cast<PointerType>(To))->getPointeeType()); in compareTypesSimple()
43 const CanQualType ToUnq = To.getUnqualifiedType(); in compareTypesSimple()
46 To.isAtLeastAsQualifiedAs(From)) in compareTypesSimple()
/freebsd-12.1/usr.bin/fortune/datfiles/
H A Dfreebsd-tips199 To change an environment variable in /bin/sh use:
207 To clear the screen, use "clear". To re-display your screen buffer, press
220 To do a fast search for a file, try
242 To quickly create an empty file, use "touch filename".
287 To see the last 10 lines of a long file, use "tail filename". To see the
433 To remove an alias, you can usually use 'unalias aliasname'. To list all
541 To upgrade to a newer release use
610 To unset a quota, assign "none" as the value.
680 To sort in descending order instead, use -S:
715 To delete d and all later snapshots:
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp97 const llvm::APSInt &To, bool InRange) { in assumeInclusiveRange() argument
99 assert(From.isUnsigned() == To.isUnsigned() && in assumeInclusiveRange()
100 From.getBitWidth() == To.getBitWidth() && in assumeInclusiveRange()
107 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRange()
118 return assumeSymInclusiveRange(State, Sym, From, To, InRange); in assumeInclusiveRange()
124 bool IsInRange = IntVal >= From && IntVal <= To; in assumeInclusiveRange()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DASTImporter.h175 LLVM_NODISCARD llvm::Error importInto(ImportT &To, const ImportT &From) { in importInto() argument
176 To = Import(From); in importInto()
177 if (From && !To) in importInto()
425 virtual Decl *Imported(Decl *From, Decl *To) { return To; } in Imported() argument
428 Decl *MapImported(Decl *From, Decl *To);
436 virtual Decl *GetOriginalDecl(Decl *To) { return nullptr; } in GetOriginalDecl() argument
440 bool IsStructurallyEquivalent(QualType From, QualType To,
/freebsd-12.1/sys/dev/e1000/
H A DREADME69 3. To create a loadable module, perform the following steps.
72 a. To compile the module
87 4. To compile the driver into the kernel, enter:
241 To create a new VLAN interface:
258 To remove a VLAN interface:
289 To enable checksum offloading:
293 To disable checksum offloading:
297 To confirm the current setting:
322 To enable:
375 a. To compile the module
[all …]
/freebsd-12.1/contrib/libc++/include/experimental/
H A Dtype_traits60 template <class To, template<class...> class Op, class... Args>
61 using is_detected_convertible = is_convertible<detected_t<Op, Args...>, To>;
62 template <class To, template<class...> class Op, class... Args>
64 = is_detected_convertible<To, Op, Args...>::value;
145 template <class To, template<class...> class _Op, class... _Args>
146 using is_detected_convertible = is_convertible<detected_t<_Op, _Args...>, To>;
147 template <class To, template<class...> class _Op, class... _Args>
148 …_LIBCPP_CONSTEXPR bool is_detected_convertible_v = is_detected_convertible<To, _Op, _Args...>::val…
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDomTreeUpdater.h107 void insertEdge(BasicBlock *From, BasicBlock *To);
118 void insertEdgeRelaxed(BasicBlock *From, BasicBlock *To);
129 void deleteEdge(BasicBlock *From, BasicBlock *To);
140 void deleteEdgeRelaxed(BasicBlock *From, BasicBlock *To);
227 BasicBlock *To);
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-compactflash.c81 int To,Tkr,Td; in cvmx_compactflash_generate_dma_tim() local
148 To = 80; in cvmx_compactflash_generate_dma_tim()
153 oe_n = MAX(To - oe_a, Tkr); // Tkr from cf spec, lengthened to meet To in cvmx_compactflash_generate_dma_tim()
163 To = 100; in cvmx_compactflash_generate_dma_tim()
168 oe_n = MAX(To - oe_a, Tkr); // Tkr from cf spec, lengthened to meet To in cvmx_compactflash_generate_dma_tim()
182 To = 120; in cvmx_compactflash_generate_dma_tim()
188 oe_n = MAX(To - oe_a, Tkr) + 10; // Tkr from cf spec, lengthened to meet To in cvmx_compactflash_generate_dma_tim()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DPreprocessorOptions.h179 void addRemappedFile(StringRef From, StringRef To) { in addRemappedFile() argument
180 RemappedFiles.emplace_back(From, To); in addRemappedFile()
183 void addRemappedFile(StringRef From, llvm::MemoryBuffer *To) { in addRemappedFile() argument
184 RemappedFileBuffers.emplace_back(From, To); in addRemappedFile()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMips16InstrInfo.td575 // To add 32-bit integers.
583 // To do a bitwise logical AND.
827 // To load a constant into a GPR.
834 // To load a constant into a GPR.
938 // To negate an integer value.
945 // To complement an integer value
952 // To do a bitwise logical OR.
1007 // To store a byte to memory.
1274 // To subtract 32-bit integers
1281 // To store a word to memory.
[all …]
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerRandom.h25 intptr_t operator()(intptr_t From, intptr_t To) { in operator()
26 assert(From < To); in operator()
27 intptr_t RangeSize = To - From + 1; in operator()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DMemorySSAUpdater.h105 void removeEdge(BasicBlock *From, BasicBlock *To);
109 void removeDuplicatePhiEdgesBetween(BasicBlock *From, BasicBlock *To);
153 void moveAllAfterSpliceBlocks(BasicBlock *From, BasicBlock *To,
169 void moveAllAfterMergeBlocks(BasicBlock *From, BasicBlock *To,
253 void moveAllAccesses(BasicBlock *From, BasicBlock *To, Instruction *Start);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRangedConstraintManager.h38 const llvm::APSInt &To() const { return *second; } in To() function
40 return &From() == &To() ? &From() : nullptr; in getConcreteValue()
45 ID.AddPointer(&To()); in Profile()
154 const llvm::APSInt &To,
199 const llvm::APSInt &To, const llvm::APSInt &Adjustment) = 0;
203 const llvm::APSInt &To, const llvm::APSInt &Adjustment) = 0;
/freebsd-12.1/contrib/llvm/lib/XRay/
H A DBlockVerifier.cpp62 Error BlockVerifier::transition(State To) { in transition() argument
116 recordToString(CurrentRecord).data(), recordToString(To).data()); in transition()
120 if (CurrentRecord == State::EndOfBuffer && To != State::NewBuffer) in transition()
127 if ((Destinations & ToSet(mask(To))) == 0) in transition()
131 recordToString(CurrentRecord).data(), recordToString(To).data()); in transition()
133 CurrentRecord = To; in transition()
/freebsd-12.1/contrib/llvm/include/llvm/Demangle/
H A DStringView.h51 StringView substr(size_t From, size_t To) const { in substr() argument
52 if (To >= size()) in substr()
53 To = size() - 1; in substr()
56 return StringView(First + From, First + To); in substr()

12345678910>>...44