Searched defs:Ty (Results 1 - 25 of 455) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Datomic-compare.c23 typedef _Atomic(int) Ty; typedef
24 void PR23638(Ty *a) {
/external/llvm/include/llvm/CodeGen/
H A DAnalysis.h47 /// \param Ty is the type indexed by \p Indices.
53 /// \returns \p CurIndex plus the linear index in \p Ty the indices list.
54 unsigned ComputeLinearIndex(Type *Ty,
59 inline unsigned ComputeLinearIndex(Type *Ty, argument
62 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
72 void ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL, Type *Ty,
H A DMachineInstrBundleIterator.h24 template <typename Ty>
26 : public std::iterator<std::bidirectional_iterator_tag, Ty, ptrdiff_t> {
27 typedef ilist_iterator<Ty> instr_iterator;
33 MachineInstrBundleIterator(Ty &MI) : MII(MI) {
38 MachineInstrBundleIterator(Ty *MI) : MII(MI) {
50 Ty &operator*() const { return *MII; }
51 Ty *operator->() const { return &operator*(); }
54 operator Ty *() const { return MII.getNodePtrUnchecked(); }
/external/llvm/unittests/IR/
H A DAsmWriterTest.cpp25 auto Ty = Type::getInt32Ty(Ctx); local
26 auto Undef = UndefValue::get(Ty);
29 "", MDNode::get(Ctx, {ConstantAsMetadata::get(ConstantInt::get(Ty, 1))}));
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DAnalysis.h36 unsigned ComputeLinearIndex(Type *Ty,
41 inline unsigned ComputeLinearIndex(Type *Ty, argument
44 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
54 void ComputeValueVTs(const TargetLowering &TLI, Type *Ty,
/external/clang/lib/StaticAnalyzer/Core/
H A DConstraintManager.cpp30 QualType Ty = Sym->getType(); local
31 DefinedSVal V = Loc::isLocType(Ty) ? getLocFromSymbol(State, Sym)
/external/tensorflow/tensorflow/core/framework/
H A Dtensor_testutil.cc31 auto Ty = y.flat<T>(); local
33 if (!IsClose(Tx(i), Ty(i), atol, rtol)) {
39 << Ty(i);
/external/clang/lib/CodeGen/
H A DCodeGenABITypes.cpp38 CanQual<FunctionProtoType> Ty,
40 return CGM.getTypes().arrangeFreeFunctionType(Ty, FD);
45 CanQual<FunctionNoProtoType> Ty) {
46 return CGM.getTypes().arrangeFreeFunctionType(Ty);
37 arrangeFreeFunctionType(CodeGenModule &CGM, CanQual<FunctionProtoType> Ty, const FunctionDecl *FD) argument
44 arrangeFreeFunctionType(CodeGenModule &CGM, CanQual<FunctionNoProtoType> Ty) argument
/external/llvm/include/llvm/Target/
H A DCostTable.h32 int ISD, MVT Ty) {
35 return ISD == Entry.ISD && Ty == Entry.Type; });
31 CostTableLookup(ArrayRef<CostTblEntry> Tbl, int ISD, MVT Ty) argument
/external/llvm/lib/IR/
H A DTypeFinder.cpp92 void TypeFinder::incorporateType(Type *Ty) { argument
94 if (!VisitedTypes.insert(Ty).second)
98 TypeWorklist.push_back(Ty);
100 Ty = TypeWorklist.pop_back_val();
103 if (StructType *STy = dyn_cast<StructType>(Ty))
108 for (Type::subtype_reverse_iterator I = Ty->subtype_rbegin(),
109 E = Ty->subtype_rend();
/external/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp34 int SystemZTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) { argument
35 assert(Ty->isIntegerTy());
37 unsigned BitSize = Ty->getPrimitiveSizeInBits();
67 const APInt &Imm, Type *Ty) {
68 assert(Ty->isIntegerTy());
70 unsigned BitSize = Ty->getPrimitiveSizeInBits();
181 return SystemZTTIImpl::getIntImmCost(Imm, Ty);
185 const APInt &Imm, Type *Ty) {
186 assert(Ty->isIntegerTy());
188 unsigned BitSize = Ty
66 getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty) argument
184 getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm, Type *Ty) argument
[all...]
/external/llvm/lib/Transforms/IPO/
H A DExtractGV.cpp134 Type *Ty = CurI->getValueType(); variable
138 if (FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
144 new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage,
/external/llvm/unittests/AsmParser/
H A DAsmParserTest.cpp178 Type *Ty; local
179 Ty = parseType("i32", Error, M, &Mapping);
180 ASSERT_TRUE(Ty);
181 ASSERT_TRUE(Ty->isIntegerTy());
182 ASSERT_TRUE(Ty->getPrimitiveSizeInBits() == 32);
185 Ty = parseType("i13", Error, M, &Mapping);
186 ASSERT_TRUE(Ty);
187 ASSERT_TRUE(Ty->isIntegerTy());
188 ASSERT_TRUE(Ty->getPrimitiveSizeInBits() == 13);
191 Ty
303 Type *Ty; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/IPA/
H A DFindUsedTypes.cpp32 void FindUsedTypes::IncorporateType(Type *Ty) { argument
35 if (!UsedTypes.insert(Ty)) return; // Already contain Ty.
39 for (Type::subtype_iterator I = Ty->subtype_begin(), E = Ty->subtype_end();
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DVerifierTest.cpp50 Type *Ty = Type::getInt8Ty(C); local
51 Constant *Init = Constant::getNullValue(Ty);
52 GlobalVariable *Aliasee = new GlobalVariable(M, Ty, true,
/external/swiftshader/third_party/subzero/src/
H A DIceTypeConverter.cpp46 void TypeConverter::addLLVMType(Type Ty, llvm::Type *LLVMTy) { argument
47 LLVM2IceMap[LLVMTy] = Ty;
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp59 bool cocoa::isCocoaObjectRef(QualType Ty) { argument
60 if (!Ty->isObjCObjectPointerType())
63 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>();
/external/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp59 MachineInstr *MachineIRBuilder::buildInstr(unsigned Opcode, Type *Ty) { argument
61 if (Ty) {
64 NewMI->setType(Ty);
77 MachineInstr *MachineIRBuilder::buildInstr(unsigned Opcode, Type *Ty, argument
80 MachineInstr *NewMI = buildInstr(Opcode, Ty);
99 MachineInstr *MachineIRBuilder::buildInstr(unsigned Opcode, Type *Ty, argument
101 MachineInstr *NewMI = buildInstr(Opcode, Ty);
/external/llvm/lib/Target/Lanai/
H A DLanaiTargetTransformInfo.h59 unsigned Opcode, Type *Ty,
68 return BaseT::getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info,
79 return 64 * BaseT::getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info,
58 getArithmeticInstrCost( unsigned Opcode, Type *Ty, TTI::OperandValueKind Opd1Info = TTI::OK_AnyValue, TTI::OperandValueKind Opd2Info = TTI::OK_AnyValue, TTI::OperandValueProperties Opd1PropInfo = TTI::OP_None, TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None) argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.cpp93 unsigned Opcode, Type *Ty, TTI::OperandValueKind Opd1Info,
97 std::pair<int, MVT> LT = TLI->getTypeLegalizationCost(DL, Ty);
103 return BaseT::getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info,
116 return BaseT::getArithmeticInstrCost(Opcode, Ty, Opd1Info, Opd2Info,
92 getArithmeticInstrCost( unsigned Opcode, Type *Ty, TTI::OperandValueKind Opd1Info, TTI::OperandValueKind Opd2Info, TTI::OperandValueProperties Opd1PropInfo, TTI::OperandValueProperties Opd2PropInfo) argument
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetTransformInfo.cpp25 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
47 unsigned Opcode, Type *Ty, TTI::OperandValueKind Opd1Info,
52 Opcode, Ty, Opd1Info, Opd2Info, Opd1PropInfo, Opd2PropInfo);
54 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
46 getArithmeticInstrCost( unsigned Opcode, Type *Ty, TTI::OperandValueKind Opd1Info, TTI::OperandValueKind Opd2Info, TTI::OperandValueProperties Opd1PropInfo, TTI::OperandValueProperties Opd2PropInfo) argument
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/IPO/
H A DPassManagerBuilder.h104 static void addGlobalExtension(ExtensionPointTy Ty, ExtensionFn Fn);
105 void addExtension(ExtensionPointTy Ty, ExtensionFn Fn);
127 RegisterStandardPasses(PassManagerBuilder::ExtensionPointTy Ty, argument
129 PassManagerBuilder::addGlobalExtension(Ty, Fn);
/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitcodeDecoders.cpp70 bool DecodeBinaryOpcode(uint64_t NaClOpcode, Type *Ty, argument
77 LLVMOpcode = Ty->isFPOrFPVectorTy() ? Instruction::FAdd : Instruction::Add;
80 LLVMOpcode = Ty->isFPOrFPVectorTy() ? Instruction::FSub : Instruction::Sub;
83 LLVMOpcode = Ty->isFPOrFPVectorTy() ? Instruction::FMul : Instruction::Mul;
89 LLVMOpcode = Ty->isFPOrFPVectorTy() ? Instruction::FDiv : Instruction::SDiv;
95 LLVMOpcode = Ty->isFPOrFPVectorTy() ? Instruction::FRem : Instruction::SRem;
/external/tensorflow/tensorflow/core/kernels/
H A Dlistdiff_op.cc48 const auto Ty = y.vec<T>(); variable
49 const size_t y_size = Ty.size();
57 y_set.insert(Ty(i));
/external/clang/lib/AST/
H A DItaniumCXXABI.cpp74 const Type *Ty = nullptr; variable
75 return ++ManglingNumbers[Ty];

Completed in 646 milliseconds

1234567891011>>