Home
last modified time | relevance | path

Searched refs:baseType (Results 1 – 24 of 24) 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.h37 #define VARIANT_ERROR_RESULT(baseType, variantName) \ argument
40 baseType internal_never_use_directly; \
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenClass.cpp121 const Type *baseType = baseInit->getBaseClass(); in isInitializerOfDynamicClass() local
123 cast<CXXRecordDecl>(baseType->castAs<RecordType>()->getDecl()); in isInitializerOfDynamicClass()
161 const Type *baseType = baseInit->getBaseClass(); in emitBaseInitializer() local
163 cast<CXXRecordDecl>(baseType->castAs<RecordType>()->getDecl()); in emitBaseInitializer()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td476 def : Property<"baseType", QualType> {
487 return ctx.getUnaryTransformType(baseType, underlyingType, transform);
933 def : Property<"baseType", QualType> {
947 return ctx.getObjCObjectType(baseType, typeArgsAsWritten, qualifiers,
955 let IgnoredProperties = [ "baseType", "typeArgsAsWritten",
H A DType.h1701 ExtQualsTypeCommonBase(const Type *baseType, QualType canon)
1702 : BaseType(baseType), CanonicalType(canon) {}
1737 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals)
1738 : ExtQualsTypeCommonBase(baseType,
7731 QualType baseType = getBaseType();
7732 while (const auto *ObjT = baseType->getAs<ObjCObjectType>()) {
7736 baseType = ObjT->getBaseType();
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2619 llvm::Type *baseType,
2655 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
2656 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
2695 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
2696 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
2711 llvm::Type *baseType, in EmitNullConstantForBase() argument
2717 return llvm::Constant::getNullValue(baseType); in EmitNullConstantForBase()
H A DCodeGenFunction.cpp2178 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, in emitNonZeroVLAInit() argument
2183 CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType); in emitNonZeroVLAInit()
2323 QualType &baseType, in emitArrayLength() argument
2341 baseType = elementType; in emitArrayLength()
2390 llvm::Type *baseType = ConvertType(eltType); in emitArrayLength() local
2391 addr = addr.withElementType(baseType); in emitArrayLength()
2400 baseType = eltType; in emitArrayLength()
H A DCodeGenFunction.h3083 llvm::Value *emitArrayLength(const ArrayType *arrayType, QualType &baseType,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp942 QualType baseType(splitBaseType.Ty, 0); in stripObjCKindOfTypeAndQuals() local
944 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx); in stripObjCKindOfTypeAndQuals()
947 ctx.getQualifiedType(baseType, splitBaseType.Quals), in stripObjCKindOfTypeAndQuals()
1331 QualType baseType = recurse(T->getBaseType()); in VisitObjCObjectType() local
1332 if (baseType.isNull()) in VisitObjCObjectType()
1349 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() && in VisitObjCObjectType()
1354 baseType, typeArgs, in VisitObjCObjectType()
1608 QualType baseType = objType->getBaseType().stripObjCKindOfType(Ctx); in VisitObjCObjectType() local
1609 return Ctx.getObjCObjectType(baseType, objType->getTypeArgsAsWritten(), in VisitObjCObjectType()
H A DASTContext.cpp3235 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { in getExtQualType() argument
3241 ExtQuals::Profile(ID, baseType, quals); in getExtQualType()
3250 if (!baseType->isCanonicalUnqualified()) { in getExtQualType()
3251 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); in getExtQualType()
3259 auto *eq = new (*this, alignof(ExtQuals)) ExtQuals(baseType, canon, quals); in getExtQualType()
6118 QualType baseType, in getObjCObjectType() argument
6125 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType()
6126 return baseType; in getObjCObjectType()
6130 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf); in getObjCObjectType()
6140 if (const auto *baseObject = baseType->getAs<ObjCObjectType>()) in getObjCObjectType()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1422 ParsedType baseType, in parseObjCTypeArgsOrProtocolQualifiers() argument
1461 QualType BaseT = Actions.GetTypeFromParser(baseType); in parseObjCTypeArgsOrProtocolQualifiers()
1487 getCurScope(), baseType, lAngleLoc, identifiers, identifierLocs, in parseObjCTypeArgsOrProtocolQualifiers()
1595 ParsedType baseType, in parseObjCTypeArgsAndProtocolQualifiers() argument
1607 parseObjCTypeArgsOrProtocolQualifiers(baseType, in parseObjCTypeArgsAndProtocolQualifiers()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp372 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, in CheckExtVectorComponent() argument
380 const ExtVectorType *vecType = baseType->castAs<ExtVectorType>(); in CheckExtVectorComponent()
456 << baseType << SourceRange(CompLoc); in CheckExtVectorComponent()
H A DSemaDeclObjC.cpp1430 Scope *S, ParsedType baseType, SourceLocation lAngleLoc, in actOnObjCTypeArgsOrProtocolQualifiers() argument
1448 QualType base = SemaRef.GetTypeFromParser(baseType, nullptr); in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp14693 QualType baseType = Context.getBaseElementType(type); in CheckCompleteVariableDeclaration() local
14780 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); in CheckCompleteVariableDeclaration()
14853 if (const RecordType *recordType = baseType->getAs<RecordType>()) in CheckCompleteVariableDeclaration()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h327 Scope *S, ParsedType baseType, SourceLocation lAngleLoc,
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5433 OPTIONAL(baseType, MDField, ); \ in parseDISubrangeType()
5461 baseType.Val, LowerBound, UpperBound, Stride, Bias)); in parseDISubrangeType()
5651 REQUIRED(baseType, MDField, ); \ in parseDIDerivedType()
5679 baseType.Val, size.getValueAsMetadata(Context), align.Val, in parseDIDerivedType()
5692 OPTIONAL(baseType, MDField, ); \ in parseDICompositeType()
5730 scope.Val, baseType.Val, size.getValueAsMetadata(Context), in parseDICompositeType()
5744 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val, in parseDICompositeType()
/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.h5547 ParsedType baseType, SourceLocation &typeArgsLAngleLoc,
5557 ParsedType baseType, SourceLocation &typeArgsLAngleLoc,
/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.cpp7066 QualType baseType = Record.readQualType(); in readTypeRecord() local
7068 return Context.getQualifiedType(baseType, quals); in readTypeRecord()