Home
last modified time | relevance | path

Searched refs:baseType (Results 1 – 23 of 23) sorted by relevance

/freebsd-14.2/sys/dev/pms/RefTisa/discovery/dm/
H A Ddmlist.h148 #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 Dsmlist.h147 #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 Dtdlist.h157 #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 Dtdioctl.c85 #define agFieldOffset(baseType,fieldName) \ argument
87 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) \
/freebsd-14.2/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsallist.h437 #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 Dbenchzstd.h42 #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 DTypeProperties.td84 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 DType.h1475 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 DCGExprConstant.cpp2261 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 DCodeGenFunction.cpp1995 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 DCodeGenFunction.h2838 QualType &baseType,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DType.cpp838 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 DASTContext.cpp2993 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 DParseObjc.cpp1646 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 DSemaExprMember.cpp330 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 DSemaDeclObjC.cpp1428 ParsedType baseType, in actOnObjCTypeArgsOrProtocolQualifiers() argument
1450 QualType base = GetTypeFromParser(baseType, nullptr); in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp14523 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 DParser.h1688 ParsedType baseType,
1702 ParsedType baseType,
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp237 RAW_METHOD_DUMP_AS(OS, baseType, PDB_BuiltinType); in dump()
/freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5112 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 Dcatch.hpp3391 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 DASTReader.cpp6726 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 DSema.h10600 ParsedType baseType,