| /freebsd-14.2/sys/dev/pms/RefTisa/discovery/dm/ |
| H A D | dmlist.h | 148 #define TD_FIELD_OFFSET(baseType,fieldName) \ argument 149 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) 151 #define DMLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \ argument 152 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \ 153 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
|
| /freebsd-14.2/sys/dev/pms/RefTisa/sat/src/ |
| H A D | smlist.h | 147 #define TD_FIELD_OFFSET(baseType,fieldName) \ argument 148 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) 150 #define SMLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \ argument 151 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \ 152 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
|
| /freebsd-14.2/sys/dev/pms/RefTisa/tisa/sassata/common/ |
| H A D | tdlist.h | 157 #define TD_FIELD_OFFSET(baseType,fieldName) \ argument 158 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) 160 #define TDLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \ argument 161 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \ 162 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
|
| H A D | tdioctl.c | 85 #define agFieldOffset(baseType,fieldName) \ argument 87 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) \
|
| /freebsd-14.2/sys/dev/pms/RefTisa/sallsdk/spc/ |
| H A D | sallist.h | 437 #define agObjectBase(baseType,fieldName,fieldPtr) \ argument 438 (void * ) fieldPtr == (void *) 0 ? (baseType *) 0 : \ 439 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
|
| /freebsd-14.2/sys/contrib/zstd/programs/ |
| H A D | benchzstd.h | 42 #define VARIANT_ERROR_RESULT(baseType, variantName) \ argument 45 baseType internal_never_use_directly; \
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 84 def : Property<"baseType", QualType> { 89 return ctx.getMemberPointerType(pointeeType, baseType.getTypePtr()); 437 def : Property<"baseType", QualType> { 448 return ctx.getUnaryTransformType(baseType, underlyingType, transform); 859 def : Property<"baseType", QualType> { 873 return ctx.getObjCObjectType(baseType, typeArgsAsWritten, qualifiers, 881 let IgnoredProperties = [ "baseType", "typeArgsAsWritten",
|
| H A D | Type.h | 1475 ExtQualsTypeCommonBase(const Type *baseType, QualType canon) 1476 : BaseType(baseType), CanonicalType(canon) {} 1511 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals) 1512 : ExtQualsTypeCommonBase(baseType, 6461 QualType baseType = getBaseType(); 6462 while (const auto *ObjT = baseType->getAs<ObjCObjectType>()) { 6466 baseType = ObjT->getBaseType();
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 2261 llvm::Type *baseType, 2295 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local 2296 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant() 2334 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local 2335 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant() 2350 llvm::Type *baseType, in EmitNullConstantForBase() argument 2356 return llvm::Constant::getNullValue(baseType); in EmitNullConstantForBase()
|
| H A D | CodeGenFunction.cpp | 1995 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, in emitNonZeroVLAInit() argument 2000 CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType); in emitNonZeroVLAInit() 2139 QualType &baseType, in emitArrayLength() argument 2157 baseType = elementType; in emitArrayLength() 2207 llvm::Type *baseType = ConvertType(eltType); in emitArrayLength() local 2208 addr = addr.withElementType(baseType); in emitArrayLength() 2217 baseType = eltType; in emitArrayLength()
|
| H A D | CodeGenFunction.h | 2838 QualType &baseType,
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Type.cpp | 838 QualType baseType(splitBaseType.Ty, 0); in stripObjCKindOfTypeAndQuals() local 840 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx); in stripObjCKindOfTypeAndQuals() 842 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType, in stripObjCKindOfTypeAndQuals() 1222 QualType baseType = recurse(T->getBaseType()); in VisitObjCObjectType() local 1223 if (baseType.isNull()) in VisitObjCObjectType() 1240 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() && in VisitObjCObjectType() 1245 baseType, typeArgs, in VisitObjCObjectType() 1500 QualType baseType = objType->getBaseType().stripObjCKindOfType(Ctx); in VisitObjCObjectType() local 1501 return Ctx.getObjCObjectType(baseType, objType->getTypeArgsAsWritten(), in VisitObjCObjectType()
|
| H A D | ASTContext.cpp | 2993 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { in getExtQualType() argument 2999 ExtQuals::Profile(ID, baseType, quals); in getExtQualType() 3008 if (!baseType->isCanonicalUnqualified()) { in getExtQualType() 3009 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); in getExtQualType() 5289 QualType baseType, in getObjCObjectType() argument 5296 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType() 5297 return baseType; in getObjCObjectType() 5301 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf); in getObjCObjectType() 5311 if (const auto *baseObject = baseType->getAs<ObjCObjectType>()) in getObjCObjectType() 5345 canonical = getObjCObjectType(getCanonicalType(baseType), canonTypeArgs, in getObjCObjectType() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 1646 ParsedType baseType, in parseObjCTypeArgsOrProtocolQualifiers() argument 1686 QualType BaseT = Actions.GetTypeFromParser(baseType); in parseObjCTypeArgsOrProtocolQualifiers() 1710 baseType, in parseObjCTypeArgsOrProtocolQualifiers() 1826 ParsedType baseType, in parseObjCTypeArgsAndProtocolQualifiers() argument 1838 parseObjCTypeArgsOrProtocolQualifiers(baseType, in parseObjCTypeArgsAndProtocolQualifiers()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprMember.cpp | 330 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, in CheckExtVectorComponent() argument 338 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent() 411 << baseType << SourceRange(CompLoc); in CheckExtVectorComponent()
|
| H A D | SemaDeclObjC.cpp | 1428 ParsedType baseType, in actOnObjCTypeArgsOrProtocolQualifiers() argument 1450 QualType base = GetTypeFromParser(baseType, nullptr); in actOnObjCTypeArgsOrProtocolQualifiers()
|
| H A D | SemaDecl.cpp | 14523 QualType baseType = Context.getBaseElementType(type); in CheckCompleteVariableDeclaration() local 14588 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); in CheckCompleteVariableDeclaration() 14659 if (const RecordType *recordType = baseType->getAs<RecordType>()) in CheckCompleteVariableDeclaration()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 1688 ParsedType baseType, 1702 ParsedType baseType,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIARawSymbol.cpp | 237 RAW_METHOD_DUMP_AS(OS, baseType, PDB_BuiltinType); in dump()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 5112 REQUIRED(baseType, MDField, ); \ in parseDIDerivedType() 5129 scope.Val, baseType.Val, size.Val, align.Val, in parseDIDerivedType() 5142 OPTIONAL(baseType, MDField, ); \ in parseDICompositeType() 5172 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val, in parseDICompositeType() 5184 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val, in parseDICompositeType()
|
| /freebsd-14.2/contrib/bsnmp/tests/ |
| H A D | catch.hpp | 3391 WithinUlpsMatcher(double target, uint64_t ulps, FloatingPointKind baseType); 11430 WithinUlpsMatcher::WithinUlpsMatcher(double target, uint64_t ulps, FloatingPointKind baseType) in WithinUlpsMatcher() argument 11431 :m_target{ target }, m_ulps{ ulps }, m_type{ baseType } { in WithinUlpsMatcher()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 6726 QualType baseType = Record.readQualType(); in readTypeRecord() local 6728 return Context.getQualifiedType(baseType, quals); in readTypeRecord()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 10600 ParsedType baseType,
|