Home
last modified time | relevance | path

Searched refs:IsStruct (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBTFDebug.h130 BTFTypeStruct(const DICompositeType *STy, bool IsStruct, bool HasBitField,
293 void visitStructType(const DICompositeType *STy, bool IsStruct,
H A DBTFDebug.cpp224 BTFTypeStruct::BTFTypeStruct(const DICompositeType *STy, bool IsStruct, in BTFTypeStruct() argument
227 Kind = IsStruct ? BTF::BTF_KIND_STRUCT : BTF::BTF_KIND_UNION; in BTFTypeStruct()
479 void BTFDebug::visitStructType(const DICompositeType *CTy, bool IsStruct, in visitStructType() argument
497 std::make_unique<BTFTypeStruct>(CTy, IsStruct, HasBitField, VLen); in visitStructType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4207 bool IsStruct = FullTy->isStructTy(); in parseFunctionBody() local
4210 if (!IsStruct && !IsArray) in parseFunctionBody()
4214 if (IsStruct && Index >= FullTy->getStructNumElements()) in parseFunctionBody()
4220 if (IsStruct) in parseFunctionBody()
4249 bool IsStruct = CurTy->isStructTy(); in parseFunctionBody() local
4252 if (!IsStruct && !IsArray) in parseFunctionBody()
4256 if (IsStruct && Index >= CurTy->getStructNumElements()) in parseFunctionBody()
4262 if (IsStruct) in parseFunctionBody()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp3300 auto IsStruct = [](std::initializer_list<MatcherRef> Fields) { in isValidStructGUID() local
3324 return IsStruct({IsInt(32), IsInt(16), IsInt(16), IsArray(IsInt(8), 8)})(T); in isValidStructGUID()