Searched refs:To (Results 76 - 100 of 152) sorted by relevance

1234567

/freebsd-10.2-release/sys/boot/i386/zfsboot/
H A Dzfsldr.S212 ret # To caller
243 orb $0x20,%al # To lower case
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DValueTracking.cpp1550 // struct. To is the result struct built so far, new insertvalue instructions
1552 static Value *BuildSubAggregate(Value *From, Value* To, Type *IndexedType, argument
1558 // Save the original To argument so we can modify it
1559 Value *OrigTo = To;
1564 Value *PrevTo = To;
1565 To = BuildSubAggregate(From, To, STy->getElementType(i), Idxs, IdxSkip,
1568 if (!To) {
1580 if (To)
1581 return To;
1616 Value *To = UndefValue::get(IndexedType); local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DJumpDiagnostics.cpp80 void CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc,
743 void JumpScopeChecker::CheckJump(Stmt *From, Stmt *To, SourceLocation DiagLoc, argument
749 assert(LabelAndGotoScopes.count(To) && "Jump didn't get added to scopes?");
750 unsigned ToScope = LabelAndGotoScopes[To];
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Rewrite/Core/
H A DRewriter.h251 bool ReplaceStmt(Stmt *From, Stmt *To);
254 /// To determine what the indentation should be, 'parentIndent' is used
/freebsd-10.2-release/contrib/gdb/gdb/
H A Dada-exp.c356 # define YYCOPY(To, From, Count) \
357 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
359 # define YYCOPY(To, From, Count) \
364 (To)[yyi] = (From)[yyi]; \
H A Dm2-exp.c346 # define YYCOPY(To, From, Count) \
347 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
349 # define YYCOPY(To, From, Count) \
354 (To)[yyi] = (From)[yyi]; \
H A Df-exp.c325 # define YYCOPY(To, From, Count) \
326 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
328 # define YYCOPY(To, From, Count) \
333 (To)[yyi] = (From)[yyi]; \
2269 we reject as a string literal. To embed the terminator character inside
H A Djv-exp.c316 # define YYCOPY(To, From, Count) \
317 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
319 # define YYCOPY(To, From, Count) \
324 (To)[yyi] = (From)[yyi]; \
/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DCallGraph.h96 void spliceFunction(const Function *From, const Function *To);
H A DLoopInfo.h689 /// replacementPreservesLCSSAForm - Returns true if replacing From with To
691 bool replacementPreservesLCSSAForm(Instruction *From, Value *To) { argument
694 Instruction *I = dyn_cast<Instruction>(To);
H A DAliasSetTracker.h388 void copyValue(Value *From, Value *To);
H A DRegionInfo.h460 /// @param To The Region the child nodes will be transferred to.
461 void transferChildrenTo(Region *To);
/freebsd-10.2-release/crypto/heimdal/lib/sl/
H A Dslc-gram.c357 # define YYCOPY(To, From, Count) \
358 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
360 # define YYCOPY(To, From, Count) \
365 (To)[yyi] = (From)[yyi]; \
/freebsd-10.2-release/sys/boot/i386/kgzldr/
H A Dcrt.s83 ret # To caller
/freebsd-10.2-release/sys/boot/i386/mbr/
H A Dmbr.s52 jmp main-LOAD+EXEC # To relocated code
/freebsd-10.2-release/sys/boot/pc98/btx/btxldr/
H A Dbtxldr.S219 addl %ebx,%edx # To pointer
255 start.6: addl $0x20,%edx # To next entry
267 ljmp $SEL_RCODE,$MEM_STUB # To 16-bit code
292 call hex32 # To hex
306 ret # To caller
314 ret # To caller
362 ret # To caller
380 orb $0x20,%al # To lower case
/freebsd-10.2-release/sys/boot/pc98/kgzldr/
H A Dcrt.s89 ret # To caller
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp673 /// value. Update the DAG and NodeIds replacing any uses of From to use To
675 void DAGTypeLegalizer::ReplaceValueWith(SDValue From, SDValue To) { argument
676 assert(From.getNode() != To.getNode() && "Potential legalization loop!");
680 AnalyzeNewValue(To); // Expunges To.
687 DAG.ReplaceAllUsesOfValueWith(From, To);
691 ReplacedValues[From] = To;
728 // From with To.
/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DConstants.cpp1386 void BlockAddress::replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) { argument
1393 NewF = cast<Function>(To->stripPointerCasts());
1395 NewBB = cast<BasicBlock>(To);
2561 /// 'From' to be uses of 'To'. This must update the uniquing data structures
2564 /// Note that we intentionally replace all uses of From with To here. Consider
2571 void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To, argument
2573 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
2574 Constant *ToC = cast<Constant>(To);
2646 void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To, argument
2648 assert(isa<Constant>(To)
2721 replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U) argument
2746 Constant *To = cast<Constant>(ToV); local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Analysis/
H A DConsumed.cpp458 void forwardInfo(const Stmt *From, const Stmt *To);
533 void ConsumedStmtVisitor::forwardInfo(const Stmt *From, const Stmt *To) { argument
537 PropagationMap.insert(PairType(To, Entry->second));
1146 bool ConsumedBlockInfo::isBackEdge(const CFGBlock *From, const CFGBlock *To) { argument
1148 assert(To && "From block must not be NULL");
1150 return VisitOrder[From->getBlockID()] > VisitOrder[To->getBlockID()];
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DSplitKit.cpp1355 SlotIndex To = leaveIntvAfter(BI.LastInstr); local
1357 useIntv(From, To);
1369 SlotIndex To = leaveIntvBefore(LSP); local
1370 overlapIntv(To, BI.LastInstr);
1371 SlotIndex From = enterIntvBefore(std::min(To, LeaveBefore));
1372 useIntv(From, To);
/freebsd-10.2-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h545 /// Take a block of instructions from MBB 'Other' in the range [From, To),
551 iterator From, iterator To) {
553 From.getInstrIterator(), To.getInstrIterator());
550 splice(iterator Where, MachineBasicBlock *Other, iterator From, iterator To) argument
/freebsd-10.2-release/contrib/bmake/mk/
H A Dwarnings.mk72 # -Werror turns into an error. To be safe, set W_uninitialized blank.
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTImporter.h281 clang::Decl *GetOriginalDecl (clang::Decl *To);
/freebsd-10.2-release/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.c504 # define YYCOPY(To, From, Count) \
505 __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
507 # define YYCOPY(To, From, Count) \
512 (To)[yyi] = (From)[yyi]; \

Completed in 228 milliseconds

1234567