Searched refs:To (Results 1 - 25 of 153) sorted by relevance

1234567

/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DCasting.h49 // The core of the implementation of isa<X> is here; To and From should be
52 template <typename To, typename From, typename Enabler = void>
55 return To::classof(&Val);
60 template <typename To, typename From>
61 struct isa_impl<To, From,
63 llvm::is_base_of<To, From>
69 template <typename To, typename From> struct isa_impl_cl {
71 return isa_impl<To, From>::doit(Val);
75 template <typename To, typename From> struct isa_impl_cl<To, cons
[all...]
/freebsd-10.1-release/contrib/llvm/include/llvm/Analysis/
H A DCFG.h52 /// \brief Determine whether instruction 'To' is reachable from 'From',
55 /// Determine whether there is a path from From to To within a single function.
57 /// 'To' can not be executed. Conservatively returns true.
60 /// walking down successors from From to reach To, with a fixed threshold.
64 /// we find a block that dominates the block containing 'To'. DT is most useful
67 bool isPotentiallyReachable(const Instruction *From, const Instruction *To,
71 /// \brief Determine whether block 'To' is reachable from 'From', returning
74 /// Determine whether there is a path from From to To within a single function.
76 /// 'To' can not be executed. Conservatively returns true.
77 bool isPotentiallyReachable(const BasicBlock *From, const BasicBlock *To,
[all...]
H A DLoopIterator.h117 bool insertEdge(BasicBlock *From, BasicBlock *To);
170 insertEdge(BasicBlock *From, BasicBlock *To) { argument
171 return LBT.visitPreorder(To);
/freebsd-10.1-release/contrib/llvm/lib/IR/
H A DUser.cpp24 // references to the "To" definition.
26 void User::replaceUsesOfWith(Value *From, Value *To) { argument
27 if (From == To) return; // Duh what?
35 // "To", adding "this" to the uses list of To, and
37 setOperand(i, To); // Fix it now...
H A DMetadata.cpp328 void MDNode::replaceOperand(MDNodeOperand *Op, Value *To) { argument
336 if (To && isFunctionLocalValue(To)) {
338 To = 0;
341 const Function *FV = getFunctionForValue(To);
345 To = 0;
349 if (From == To)
353 Op->set(To);
369 if (To == 0) {
393 if (isFunctionLocal() && !isFunctionLocalValue(To)) {
[all...]
/freebsd-10.1-release/contrib/libstdc++/include/backward/
H A Dbackward_warning.h36 <iostream.h>. To disable this warning use -Wno-deprecated.
/freebsd-10.1-release/sys/boot/i386/boot2/
H A Dsio.S53 sio_flush.2: ret # To caller
68 sio_putc.2: ret # To caller
76 ret # To caller
84 ret # To caller
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaFixItUtils.cpp24 CanQualType To,
28 if (!To.isAtLeastAsQualifiedAs(From))
32 To = To.getNonReferenceType();
35 if (isa<PointerType>(From) && isa<PointerType>(To)) {
38 To = S.Context.getCanonicalType(
39 (cast<PointerType>(To))->getPointeeType());
43 const CanQualType ToUnq = To.getUnqualifiedType();
46 To.isAtLeastAsQualifiedAs(From))
23 compareTypesSimple(CanQualType From, CanQualType To, Sema &S, SourceLocation Loc, ExprValueKind FromVK) argument
/freebsd-10.1-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ argument
50 intptr_t Offset = ((intptr_t)To - (intptr_t)At) >> 2;
56 AtI[0] = BUILD_LIS(12, To >> 16); // lis r12, hi16(address)
57 AtI[1] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address)
61 AtI[0] = BUILD_LIS(12, To >> 48); // lis r12, hi16(address)
62 AtI[1] = BUILD_ORI(12, 12, To >> 32); // ori r12, r12, lo16(address)
64 AtI[3] = BUILD_ORIS(12, 12, To >> 16); // oris r12, r12, hi16(address)
65 AtI[4] = BUILD_ORI(12, 12, To); // ori r12, r12, lo16(address)
/freebsd-10.1-release/sys/contrib/octeon-sdk/
H A Dcvmx-compactflash.c81 int To,Tkr,Td; local
148 To = 80;
153 oe_n = MAX(To - oe_a, Tkr); // Tkr from cf spec, lengthened to meet To
155 // oe_n + oe_h must be >= To (cycle time)
163 To = 100;
168 oe_n = MAX(To - oe_a, Tkr); // Tkr from cf spec, lengthened to meet To
170 // oe_n + oe_h must be >= To (cycle time)
182 To
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/AST/
H A DASTImporter.h272 /// \c To declaration mappings as they are imported.
273 virtual Decl *Imported(Decl *From, Decl *To);
281 virtual Decl *GetOriginalDecl(Decl *To) { return NULL; } argument
285 bool IsStructurallyEquivalent(QualType From, QualType To,
/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DNoAliasAnalysis.cpp67 virtual void copyValue(Value *From, Value *To) {} argument
H A DAliasDebugger.cpp125 virtual void copyValue(Value *From, Value *To) { argument
126 Vals.insert(To);
127 AliasAnalysis::copyValue(From, To);
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPreprocessorOptions.h193 void addRemappedFile(StringRef From, StringRef To) { argument
194 RemappedFiles.push_back(std::make_pair(From, To));
201 void addRemappedFile(StringRef From, const llvm::MemoryBuffer * To) { argument
202 RemappedFileBuffers.push_back(std::make_pair(From, To));
/freebsd-10.1-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSemaFixItUtils.h34 /// Performs a simple check to see if From type can be converted to To type.
36 CanQualType To,
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp31 const Stmt &To) {
33 CharSourceRange::getTokenRange(To.getSourceRange()),
29 replaceStmtWithStmt(SourceManager &Sources, const Stmt &From, const Stmt &To) argument
/freebsd-10.1-release/sys/boot/i386/btx/lib/
H A Dbtxv86.s54 int $INT_V86 # To BTX
58 ret # To user
80 ret # To caller
/freebsd-10.1-release/sys/boot/pc98/btx/lib/
H A Dbtxv86.s54 int $INT_V86 # To BTX
58 ret # To user
80 ret # To caller
/freebsd-10.1-release/sys/dev/ixgb/
H A DREADME59 3. To install man page:
63 4. To load the driver onto a running system:
67 5. To assign an IP address to the interface, enter the following:
145 To enable Jumbo Frames, use the ifconfig utility to increase the MTU
159 MTU range is 1500. To modify the setting, enter the following:
163 To confirm an interface's MTU value, use the ifconfig command. To confirm
170 To create a new VLAN pseudo-interface:
174 To associate the VLAN pseudo-interface with a physical interface and
187 To remov
[all...]
/freebsd-10.1-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DBasicBlockUtils.h69 // instruction specified by To.
71 void ReplaceInstWithInst(Instruction *From, Instruction *To);
136 BasicBlock *SplitEdge(BasicBlock *From, BasicBlock *To, Pass *P);
/freebsd-10.1-release/contrib/llvm/lib/Analysis/IPA/
H A DCallGraph.cpp160 void CallGraph::spliceFunction(const Function *From, const Function *To) { argument
162 assert(!FunctionMap.count(To) &&
165 I->second->F = const_cast<Function*>(To);
166 FunctionMap[To] = I->second;
/freebsd-10.1-release/contrib/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp198 void delPhiValues(BasicBlock *From, BasicBlock *To);
200 void addPhiValues(BasicBlock *From, BasicBlock *To);
505 /// \brief Remove all PHI values coming from "From" into "To" and remember
507 void StructurizeCFG::delPhiValues(BasicBlock *From, BasicBlock *To) { argument
508 PhiMap &Map = DeletedPhis[To];
509 for (BasicBlock::iterator I = To->begin(), E = To->end();
521 void StructurizeCFG::addPhiValues(BasicBlock *From, BasicBlock *To) { argument
522 for (BasicBlock::iterator I = To->begin(), E = To
538 BasicBlock *To = AI->first; local
[all...]
/freebsd-10.1-release/contrib/llvm/utils/TableGen/
H A DSetTheory.cpp171 // (sequence "Format", From, To) Generate a sequence of records by name.
177 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
193 int64_t From, To; local
202 To = II->getValue();
205 if (To < 0 || To >= (1 << 30))
206 PrintFatalError(Loc, "To out of range");
211 Step *= From <= To ? 1 : -1;
213 if (Step > 0 && From > To)
215 else if (Step < 0 && From < To)
[all...]
/freebsd-10.1-release/contrib/binutils/include/
H A Dobstack.h149 # define _obstack_memcpy(To, From, N) memcpy ((To), (From), (N))
152 # define _obstack_memcpy(To, From, N) memcpy ((To), (char *)(From), (N))
154 # define _obstack_memcpy(To, From, N) bcopy ((char *)(From), (To), (N))
267 /* To prevent prototype warnings provide complete argument list in
/freebsd-10.1-release/contrib/gcclibs/include/
H A Dobstack.h149 # define _obstack_memcpy(To, From, N) memcpy ((To), (From), (N))
152 # define _obstack_memcpy(To, From, N) memcpy ((To), (char *)(From), (N))
154 # define _obstack_memcpy(To, From, N) bcopy ((char *)(From), (To), (N))
267 /* To prevent prototype warnings provide complete argument list in

Completed in 280 milliseconds

1234567