Home
last modified time | relevance | path

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

/freebsd/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/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/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/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/sys/contrib/zstd/programs/
H A Dbenchzstd.h42 #define VARIANT_ERROR_RESULT(baseType, variantName) \ argument
45 baseType internal_never_use_directly; \
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td103 def : Property<"baseType", QualType> {
108 return ctx.getMemberPointerType(pointeeType, baseType.getTypePtr());
484 def : Property<"baseType", QualType> {
495 return ctx.getUnaryTransformType(baseType, underlyingType, transform);
910 def : Property<"baseType", QualType> {
924 return ctx.getObjCObjectType(baseType, typeArgsAsWritten, qualifiers,
932 let IgnoredProperties = [ "baseType", "typeArgsAsWritten",
H A DType.h1698 ExtQualsTypeCommonBase(const Type *baseType, QualType canon)
1699 : BaseType(baseType), CanonicalType(canon) {}
1734 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals)
1735 : ExtQualsTypeCommonBase(baseType,
7375 QualType baseType = getBaseType();
7376 while (const auto *ObjT = baseType->getAs<ObjCObjectType>()) {
7380 baseType = ObjT->getBaseType();
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2502 llvm::Type *baseType,
2538 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
2539 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
2578 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
2579 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
2594 llvm::Type *baseType, in EmitNullConstantForBase() argument
2600 return llvm::Constant::getNullValue(baseType); in EmitNullConstantForBase()
H A DCodeGenFunction.cpp2074 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, in emitNonZeroVLAInit() argument
2079 CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType); in emitNonZeroVLAInit()
2219 QualType &baseType, in emitArrayLength() argument
2237 baseType = elementType; in emitArrayLength()
2286 llvm::Type *baseType = ConvertType(eltType); in emitArrayLength() local
2287 addr = addr.withElementType(baseType); in emitArrayLength()
2296 baseType = eltType; in emitArrayLength()
H A DCodeGenFunction.h3037 QualType &baseType,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp892 QualType baseType(splitBaseType.Ty, 0); in stripObjCKindOfTypeAndQuals() local
894 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx); in stripObjCKindOfTypeAndQuals()
896 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType, in stripObjCKindOfTypeAndQuals()
1284 QualType baseType = recurse(T->getBaseType()); in VisitObjCObjectType() local
1285 if (baseType.isNull()) in VisitObjCObjectType()
1302 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() && in VisitObjCObjectType()
1307 baseType, typeArgs, in VisitObjCObjectType()
1562 QualType baseType = objType->getBaseType().stripObjCKindOfType(Ctx); in VisitObjCObjectType() local
1563 return Ctx.getObjCObjectType(baseType, objType->getTypeArgsAsWritten(), in VisitObjCObjectType()
H A DASTContext.cpp3048 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { in getExtQualType() argument
3054 ExtQuals::Profile(ID, baseType, quals); in getExtQualType()
3063 if (!baseType->isCanonicalUnqualified()) { in getExtQualType()
3064 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); in getExtQualType()
3072 auto *eq = new (*this, alignof(ExtQuals)) ExtQuals(baseType, canon, quals); in getExtQualType()
5699 QualType baseType, in getObjCObjectType() argument
5706 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType()
5707 return baseType; in getObjCObjectType()
5711 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf); in getObjCObjectType()
5721 if (const auto *baseObject = baseType->getAs<ObjCObjectType>()) in getObjCObjectType()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp374 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, in CheckExtVectorComponent() argument
382 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent()
455 << baseType << SourceRange(CompLoc); in CheckExtVectorComponent()
H A DSemaDeclObjC.cpp1427 Scope *S, ParsedType baseType, SourceLocation lAngleLoc, in actOnObjCTypeArgsOrProtocolQualifiers() argument
1445 QualType base = SemaRef.GetTypeFromParser(baseType, nullptr); in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp14328 QualType baseType = Context.getBaseElementType(type); in CheckCompleteVariableDeclaration() local
14397 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); in CheckCompleteVariableDeclaration()
14468 if (const RecordType *recordType = baseType->getAs<RecordType>()) in CheckCompleteVariableDeclaration()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1650 ParsedType baseType, in parseObjCTypeArgsOrProtocolQualifiers() argument
1690 QualType BaseT = Actions.GetTypeFromParser(baseType); in parseObjCTypeArgsOrProtocolQualifiers()
1716 getCurScope(), baseType, lAngleLoc, identifiers, identifierLocs, in parseObjCTypeArgsOrProtocolQualifiers()
1824 ParsedType baseType, in parseObjCTypeArgsAndProtocolQualifiers() argument
1836 parseObjCTypeArgsOrProtocolQualifiers(baseType, in parseObjCTypeArgsAndProtocolQualifiers()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h339 Scope *S, ParsedType baseType, SourceLocation lAngleLoc,
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp237 RAW_METHOD_DUMP_AS(OS, baseType, PDB_BuiltinType); in dump()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1739 ParsedType baseType,
1753 ParsedType baseType,
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5372 REQUIRED(baseType, MDField, ); \ in parseDIDerivedType()
5400 scope.Val, baseType.Val, size.Val, align.Val, in parseDIDerivedType()
5413 OPTIONAL(baseType, MDField, ); \ in parseDICompositeType()
5443 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val, in parseDICompositeType()
5455 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val, in parseDICompositeType()
/freebsd/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/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6727 QualType baseType = Record.readQualType(); in readTypeRecord() local
6729 return Context.getQualifiedType(baseType, quals); in readTypeRecord()