Home
last modified time | relevance | path

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

/freebsd-13.1/sys/dev/pms/RefTisa/discovery/dm/
H A Ddmlist.h149 #define TD_FIELD_OFFSET(baseType,fieldName) \ argument
150 ((bit32)((bitptr)(&(((baseType *)0)->fieldName))))
152 #define DMLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \ argument
153 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \
154 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
/freebsd-13.1/sys/dev/pms/RefTisa/sat/src/
H A Dsmlist.h148 #define TD_FIELD_OFFSET(baseType,fieldName) \ argument
149 ((bit32)((bitptr)(&(((baseType *)0)->fieldName))))
151 #define SMLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \ argument
152 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \
153 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
/freebsd-13.1/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdlist.h158 #define TD_FIELD_OFFSET(baseType,fieldName) \ argument
159 ((bit32)((bitptr)(&(((baseType *)0)->fieldName))))
161 #define TDLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \ argument
162 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \
163 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
H A Dtdioctl.c86 #define agFieldOffset(baseType,fieldName) \ argument
88 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) \
/freebsd-13.1/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsallist.h438 #define agObjectBase(baseType,fieldName,fieldPtr) \ argument
439 (void * ) fieldPtr == (void *) 0 ? (baseType *) 0 : \
440 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
/freebsd-13.1/sys/contrib/zstd/programs/
H A Dbenchzstd.h42 #define VARIANT_ERROR_RESULT(baseType, variantName) \ argument
45 baseType internal_never_use_directly; \
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td84 def : Property<"baseType", QualType> {
89 return ctx.getMemberPointerType(pointeeType, baseType.getTypePtr());
416 def : Property<"baseType", QualType> {
427 return ctx.getUnaryTransformType(baseType, underlyingType, transform);
811 def : Property<"baseType", QualType> {
825 return ctx.getObjCObjectType(baseType, typeArgsAsWritten, qualifiers,
833 let IgnoredProperties = [ "baseType", "typeArgsAsWritten",
H A DType.h1359 ExtQualsTypeCommonBase(const Type *baseType, QualType canon)
1360 : BaseType(baseType), CanonicalType(canon) {}
1394 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals)
1395 : ExtQualsTypeCommonBase(baseType,
6055 QualType baseType = getBaseType();
6056 while (const auto *ObjT = baseType->getAs<ObjCObjectType>()) {
6060 baseType = ObjT->getBaseType();
/freebsd-13.1/contrib/apr-util/dbd/
H A Dapr_dbd_odbc.c529 SQLSMALLINT baseType, cType; in odbc_bind_param() local
538 baseType = SQL_CHAR; in odbc_bind_param()
551 baseType = sqlBaseType[type]; in odbc_bind_param()
563 switch (baseType) { in odbc_bind_param()
618 baseType, len, 0, ptr, len, indicator); in odbc_bind_param()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1845 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, in emitNonZeroVLAInit() argument
1850 CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType); in emitNonZeroVLAInit()
1992 QualType &baseType, in emitArrayLength() argument
2010 baseType = elementType; in emitArrayLength()
2060 llvm::Type *baseType = ConvertType(eltType); in emitArrayLength() local
2061 addr = Builder.CreateElementBitCast(addr, baseType, "array.begin"); in emitArrayLength()
2069 baseType = eltType; in emitArrayLength()
H A DCGExprConstant.cpp2200 llvm::Type *baseType,
2234 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
2235 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
2273 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local
2274 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant()
2289 llvm::Type *baseType, in EmitNullConstantForBase() argument
2295 return llvm::Constant::getNullValue(baseType); in EmitNullConstantForBase()
H A DCodeGenFunction.h2716 QualType &baseType,
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp813 QualType baseType(splitBaseType.Ty, 0); in stripObjCKindOfTypeAndQuals() local
815 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx); in stripObjCKindOfTypeAndQuals()
817 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType, in stripObjCKindOfTypeAndQuals()
1189 QualType baseType = recurse(T->getBaseType()); in VisitObjCObjectType() local
1190 if (baseType.isNull()) in VisitObjCObjectType()
1207 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() && in VisitObjCObjectType()
1211 return Ctx.getObjCObjectType(baseType, typeArgs, in VisitObjCObjectType()
1467 QualType baseType = objType->getBaseType().stripObjCKindOfType(Ctx); in VisitObjCObjectType() local
1468 return Ctx.getObjCObjectType(baseType, objType->getTypeArgsAsWritten(), in VisitObjCObjectType()
H A DASTContext.cpp2928 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { in getExtQualType() argument
2934 ExtQuals::Profile(ID, baseType, quals); in getExtQualType()
2943 if (!baseType->isCanonicalUnqualified()) { in getExtQualType()
2944 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); in getExtQualType()
2952 auto *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); in getExtQualType()
5096 QualType baseType, in getObjCObjectType() argument
5103 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType()
5104 return baseType; in getObjCObjectType()
5108 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf); in getObjCObjectType()
5118 if (const auto *baseObject = baseType->getAs<ObjCObjectType>()) in getObjCObjectType()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1594 ParsedType baseType, in parseObjCTypeArgsOrProtocolQualifiers() argument
1634 QualType BaseT = Actions.GetTypeFromParser(baseType); in parseObjCTypeArgsOrProtocolQualifiers()
1658 baseType, in parseObjCTypeArgsOrProtocolQualifiers()
1773 ParsedType baseType, in parseObjCTypeArgsAndProtocolQualifiers() argument
1785 parseObjCTypeArgsOrProtocolQualifiers(baseType, in parseObjCTypeArgsAndProtocolQualifiers()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp297 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, in CheckExtVectorComponent() argument
305 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent()
377 << baseType << SourceRange(CompLoc); in CheckExtVectorComponent()
H A DSemaDeclObjC.cpp1412 ParsedType baseType, in actOnObjCTypeArgsOrProtocolQualifiers() argument
1434 QualType base = GetTypeFromParser(baseType, nullptr); in actOnObjCTypeArgsOrProtocolQualifiers()
H A DSemaDecl.cpp13167 QualType baseType = Context.getBaseElementType(type); in CheckCompleteVariableDeclaration() local
13232 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); in CheckCompleteVariableDeclaration()
13297 if (const RecordType *recordType = baseType->getAs<RecordType>()) in CheckCompleteVariableDeclaration()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1632 ParsedType baseType,
1646 ParsedType baseType,
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIARawSymbol.cpp237 RAW_METHOD_DUMP_AS(OS, baseType, PDB_BuiltinType); in dump()
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp4575 REQUIRED(baseType, MDField, ); \ in parseDIDerivedType()
4591 scope.Val, baseType.Val, size.Val, align.Val, in parseDIDerivedType()
4604 OPTIONAL(baseType, MDField, ); \ in parseDICompositeType()
4633 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val, in parseDICompositeType()
4645 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val, in parseDICompositeType()
/freebsd-13.1/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-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6448 QualType baseType = Record.readQualType(); in readTypeRecord() local
6450 return Context.getQualifiedType(baseType, quals); in readTypeRecord()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h9629 ParsedType baseType,