Searched refs:TI (Results 101 - 125 of 133) sorted by relevance

123456

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1611 const TerminatorInst *TI = LLVMBB->getTerminator(); local
1618 for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) {
1619 const BasicBlock *SuccBB = TI->getSuccessor(succ);
H A DSelectionDAG.cpp472 const TargetIndexSDNode *TI = cast<TargetIndexSDNode>(N); local
473 ID.AddInteger(TI->getIndex());
474 ID.AddInteger(TI->getOffset());
475 ID.AddInteger(TI->getTargetFlags());
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1641 Branch(SExpr *C, BasicBlock *T, BasicBlock *E, unsigned TI, unsigned EI) argument
1643 ThenIndex(TI), ElseIndex(EI)
1646 unsigned TI, unsigned EI)
1648 ThenIndex(TI), ElseIndex(EI)
1645 Branch(const Branch &Br, SExpr *C, BasicBlock *T, BasicBlock *E, unsigned TI, unsigned EI) argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombine.h196 Instruction *FoldSelectOpOp(SelectInst &SI, Instruction *TI, Instruction *FI);
H A DInstCombineCasts.cpp1086 if (TruncInst *TI = dyn_cast<TruncInst>(Src))
1087 if (TI->hasOneUse() && TI->getOperand(0)->getType() == DestTy) {
1093 Value *Res = Builder->CreateShl(TI->getOperand(0), ShAmt, "sext");
/external/strace/linux/mips/
H A Dsyscallent-o32.h120 { 6, TI, sys_ipc, "ipc" }, /* 4117 */
/external/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp675 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
679 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
680 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
707 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
708 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
710 SemaRef.SubstType(TI->getType(), TemplateArgs,
H A DSemaDecl.cpp9914 if (TypeSourceInfo *TI =
9916 TypeLoc TL = TI->getTypeLoc();
10553 bool Sema::CheckEnumUnderlyingType(TypeSourceInfo *TI) { argument
10554 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
10555 QualType T = TI->getType();
10804 TypeSourceInfo *TI = nullptr; local
10805 GetTypeFromParser(UnderlyingType.get(), &TI);
10806 EnumUnderlying = TI;
10808 if (CheckEnumUnderlyingType(TI))
10812 if (DiagnoseUnexpandedParameterPack(TI
[all...]
H A DSemaStmt.cpp274 TypeSourceInfo *TI = CE->getTypeInfoAsWritten(); local
275 QualType T = TI->getType();
279 PointerTypeLoc TL = TI->getTypeLoc().castAs<PointerTypeLoc>();
H A DSemaDeclAttr.cpp3202 const TargetInfo &TI = Context.getTargetInfo(); local
3203 TargetInfo::CallingConvCheckResult A = TI.checkCallingConvention(CC);
3211 CC = TI.getDefaultCallingConv(MT);
H A DSemaLookup.cpp3585 for (const auto *TI : SemaRef.getASTContext().types()) {
3586 if (CXXRecordDecl *CD = TI->getAsCXXRecordDecl()) {
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1283 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1285 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
1286 (isLoadTypeLegal(TI->getOperand(0)->getType(), SourceVT))) {
1288 unsigned OpReg = getRegForValue(TI->getOperand(0));
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1423 } else if (TruncInst *TI = dyn_cast<TruncInst>(BI->getCondition())) {
1427 if (TI->hasOneUse() && TI->getParent() == I->getParent() &&
1428 isTypeLegal(TI->getOperand(0)->getType(), SourceVT)) {
1438 unsigned OpReg = getRegForValue(TI->getOperand(0));
/external/clang/include/clang/AST/
H A DDecl.h557 void setTypeSourceInfo(TypeSourceInfo *TI) { argument
559 getExtInfo()->TInfo = TI;
561 DeclInfo = TI;
H A DExpr.h3509 ConvertVectorExpr(Expr* SrcExpr, TypeSourceInfo *TI, QualType DstType, argument
3519 SrcExpr(SrcExpr), TInfo(TI), BuiltinLoc(BuiltinLoc), RParenLoc(RParenLoc) {}
3689 void setWrittenTypeInfo(TypeSourceInfo *TI) { TInfo = TI; } argument
/external/clang/tools/libclang/
H A DCIndex.cpp1873 void AddTypeLoc(TypeSourceInfo *TI);
1908 void EnqueueVisitor::AddTypeLoc(TypeSourceInfo *TI) { argument
1909 if (TI)
1910 WL.push_back(TypeLocVisit(TI->getTypeLoc(), Parent));
4549 if (TypeSourceInfo *TI = DD->getTypeSourceInfo())
4550 StartLoc = TI->getTypeLoc().getLocStart();
4552 if (TypeSourceInfo *TI = Typedef->getTypeSourceInfo())
4553 StartLoc = TI->getTypeLoc().getLocStart();
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp927 MachineFunction::iterator TI = ToBB; local
929 while (I != TI) {
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfChoiceFieldDictionary_autogen.h523 int64_t TI(SkPdfNativeDoc* doc);
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfChoiceFieldDictionary_autogen.h523 int64_t TI(SkPdfNativeDoc* doc);
/external/strace/
H A Dsyscall.c94 #define TI TRACE_IPC macro
123 #undef TI macro
/external/clang/lib/AST/
H A DDecl.cpp3434 if (const TypeSourceInfo *TI = getIntegerTypeSourceInfo())
3435 return TI->getTypeLoc().getSourceRange();
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1162 llvm::Constant *TI = local
1166 return llvm::ConstantExpr::getBitCast(TI, PtrToInt8Ty);
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp504 if (TypeSourceInfo *TI = Reader.GetTypeSourceInfo(F, Record, Idx))
505 ED->setIntegerTypeSourceInfo(TI);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c74 typedef unsigned long mp_word __attribute__((mode(TI)));
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c74 typedef unsigned long mp_word __attribute__((mode(TI)));

Completed in 887 milliseconds

123456