Searched defs:FType (Results 1 - 7 of 7) sorted by relevance

/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitcodeHeader.cpp57 const char *NaClBitcodeHeaderField::TypeName(FieldType FType) { argument
58 return FType > kFieldType_MAX ? "???" : FieldTypeName[FType];
62 : ID(kInvalid), FType(kBufferType), Len(0), Data(0) {}
65 : ID(MyID), FType(kFlagType), Len(0), Data(0) {
70 : ID(MyID), FType(kUInt32Type), Len(4), Data(new uint8_t[4]) {
79 assert(FType == kUInt32Type && "Header field must be uint32");
88 : ID(MyID), FType(kBufferType), Len(MyLen), Data(new uint8_t[MyLen]) {
132 DecodeTypedID(IdField, ID, FType);
141 switch (FType) {
[all...]
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitcodeHeader.h96 static const char *TypeName(FieldType FType);
98 return TypeName(FType);
114 FieldType GetType() const { return FType; }
128 FixedSubfield EncodeTypedID() const { return (ID << 4) | FType; }
130 void DecodeTypedID(FixedSubfield Subfield, Tag &ID, FieldType &FType) { argument
134 FType = (PossibleFType > kFieldType_MAX
147 FieldType FType; member in class:llvm::NaClBitcodeHeaderField
/external/llvm/include/llvm/MC/
H A DMCFragment.h147 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, argument
149 : MCFragment(FType, HasInstructions, 0, Sec) {}
173 MCEncodedFragmentWithContents(MCFragment::FragmentType FType, argument
176 : MCEncodedFragment(FType, HasInstructions, Sec) {}
194 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, argument
197 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions,
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp780 QualType FType; local
786 FType = CGM.getContext().UnsignedLongTy;
787 EltTys.push_back(CreateMemberType(Unit, FType, "reserved", &FieldOffset));
788 EltTys.push_back(CreateMemberType(Unit, FType, "Size", &FieldOffset));
806 FType = CGM.getContext().getPointerType(CGM.getContext().VoidTy);
807 EltTys.push_back(CreateMemberType(Unit, FType, "__isa", &FieldOffset));
808 FType = CGM.getContext().IntTy;
809 EltTys.push_back(CreateMemberType(Unit, FType, "__flags", &FieldOffset));
810 EltTys.push_back(CreateMemberType(Unit, FType, "__reserved", &FieldOffset));
811 FType
1977 QualType FType = Field->getType(); local
2593 CreateMemberType(llvm::DIFile *Unit, QualType FType, StringRef Name, uint64_t *Offset) argument
3051 QualType FType; local
[all...]
/external/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp595 FunctionType *FType = MF.getFunction()->getFunctionType(); local
646 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex());
756 dyn_cast<PointerType>(FType->getParamType(Ins[i].getOrigArgIndex()));
792 Type *ParamType = FType->getParamType(Arg.getOrigArgIndex());
/external/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp4346 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); local
4348 SourceLocation(), ID, FType, nullptr, SC_Extern,
4406 QualType FType = Context->getPointerType(BFT); local
4413 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue,
4530 FType, VK_LValue, SourceLocation());
4534 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast,
H A DRewriteModernObjC.cpp5202 QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); local
5204 SourceLocation(), ID, FType, nullptr, SC_Extern,
5270 QualType FType = Context->getPointerType(BFT); local
5285 DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, false, FType, VK_RValue,
5403 FType, VK_LValue, SourceLocation());
5415 NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast,

Completed in 646 milliseconds