/external/clang/test/Sema/ |
H A D | atomic-compare.c | 23 typedef _Atomic(int) Ty; typedef 24 void PR23638(Ty *a) {
|
/external/llvm/include/llvm/CodeGen/ |
H A D | Analysis.h | 47 /// \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 D | MachineInstrBundleIterator.h | 24 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 D | AsmWriterTest.cpp | 25 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 D | Analysis.h | 36 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 D | ConstraintManager.cpp | 30 QualType Ty = Sym->getType(); local 31 DefinedSVal V = Loc::isLocType(Ty) ? getLocFromSymbol(State, Sym)
|
/external/tensorflow/tensorflow/core/framework/ |
H A D | tensor_testutil.cc | 31 auto Ty = y.flat<T>(); local 33 if (!IsClose(Tx(i), Ty(i), atol, rtol)) { 39 << Ty(i);
|
/external/clang/lib/CodeGen/ |
H A D | CodeGenABITypes.cpp | 38 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 D | CostTable.h | 32 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 D | TypeFinder.cpp | 92 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 D | SystemZTargetTransformInfo.cpp | 34 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 D | ExtractGV.cpp | 134 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 D | AsmParserTest.cpp | 178 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 D | FindUsedTypes.cpp | 32 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 D | VerifierTest.cpp | 50 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 D | IceTypeConverter.cpp | 46 void TypeConverter::addLLVMType(Type Ty, llvm::Type *LLVMTy) { argument 47 LLVM2IceMap[LLVMTy] = Ty;
|
/external/clang/lib/Analysis/ |
H A D | CocoaConventions.cpp | 59 bool cocoa::isCocoaObjectRef(QualType Ty) { argument 60 if (!Ty->isObjCObjectPointerType()) 63 const ObjCObjectPointerType *PT = Ty->getAs<ObjCObjectPointerType>();
|
/external/llvm/lib/CodeGen/GlobalISel/ |
H A D | MachineIRBuilder.cpp | 59 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 D | LanaiTargetTransformInfo.h | 59 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 D | NVPTXTargetTransformInfo.cpp | 93 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 D | WebAssemblyTargetTransformInfo.cpp | 25 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 D | PassManagerBuilder.h | 104 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 D | NaClBitcodeDecoders.cpp | 70 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 D | listdiff_op.cc | 48 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 D | ItaniumCXXABI.cpp | 74 const Type *Ty = nullptr; variable 75 return ++ManglingNumbers[Ty];
|