Searched defs:InTy (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp462 QualType InTy = InputExpr->getType(); local
464 if (Context.hasSameType(InTy, OutTy))
473 if (InTy->isIntegerType() || InTy->isPointerType())
475 else if (InTy->isRealFloatingType())
494 uint64_t InSize = Context.getTypeSize(InTy);
542 << InTy << OutTy << OutputExpr->getSourceRange()
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp4612 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; local
4616 return Builder.CreateFPToUI(Ops[0], InTy);
4617 return Builder.CreateFPToSI(Ops[0], InTy);
4627 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; local
4629 Ops[0] = Builder.CreateBitCast(Ops[0], InTy);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp12379 EVT InTy = In.getOperand(0).getValueType(); local
12384 SourceType = InTy;
12385 else if (InTy != SourceType) {

Completed in 350 milliseconds