| /freebsd-12.1/sys/dev/pms/RefTisa/discovery/dm/ |
| H A D | dmlist.h | 149 #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-12.1/sys/dev/pms/RefTisa/sat/src/ |
| H A D | smlist.h | 148 #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-12.1/sys/dev/pms/RefTisa/tisa/sassata/common/ |
| H A D | tdlist.h | 158 #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 D | tdioctl.c | 86 #define agFieldOffset(baseType,fieldName) \ argument 88 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) \
|
| /freebsd-12.1/sys/dev/pms/RefTisa/sallsdk/spc/ |
| H A D | sallist.h | 438 #define agObjectBase(baseType,fieldName,fieldPtr) \ argument 439 (void * ) fieldPtr == (void *) 0 ? (baseType *) 0 : \ 440 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
|
| /freebsd-12.1/contrib/apr-util/dbd/ |
| H A D | apr_dbd_odbc.c | 529 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-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 2037 llvm::Type *baseType, 2071 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local 2072 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant() 2110 llvm::Type *baseType = structure->getElementType(fieldIndex); in EmitNullConstant() local 2111 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base); in EmitNullConstant() 2126 llvm::Type *baseType, in EmitNullConstantForBase() argument 2132 return llvm::Constant::getNullValue(baseType); in EmitNullConstantForBase()
|
| H A D | CodeGenFunction.cpp | 1740 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, in emitNonZeroVLAInit() argument 1745 CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType); in emitNonZeroVLAInit() 1887 QualType &baseType, in emitArrayLength() argument 1905 baseType = elementType; in emitArrayLength() 1955 llvm::Type *baseType = ConvertType(eltType); in emitArrayLength() local 1956 addr = Builder.CreateElementBitCast(addr, baseType, "array.begin"); in emitArrayLength() 1964 baseType = eltType; in emitArrayLength()
|
| H A D | CodeGenFunction.h | 2398 QualType &baseType,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Type.cpp | 706 QualType baseType(splitBaseType.Ty, 0); in stripObjCKindOfTypeAndQuals() local 708 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx); in stripObjCKindOfTypeAndQuals() 710 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType, in stripObjCKindOfTypeAndQuals() 1055 QualType baseType = recurse(T->getBaseType()); in TRIVIAL_TYPE_CLASS() local 1056 if (baseType.isNull()) in TRIVIAL_TYPE_CLASS() 1073 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() && in TRIVIAL_TYPE_CLASS() 1077 return Ctx.getObjCObjectType(baseType, typeArgs, in TRIVIAL_TYPE_CLASS() 1347 QualType baseType in stripObjCKindOfType() local 1350 ctx.getObjCObjectType(baseType, in stripObjCKindOfType()
|
| H A D | ASTContext.cpp | 2623 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { in getExtQualType() argument 2629 ExtQuals::Profile(ID, baseType, quals); in getExtQualType() 2638 if (!baseType->isCanonicalUnqualified()) { in getExtQualType() 2639 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split(); in getExtQualType() 2647 auto *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals); in getExtQualType() 4432 QualType baseType, in getObjCObjectType() argument 4439 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType() 4440 return baseType; in getObjCObjectType() 4444 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf); in getObjCObjectType() 4454 if (const auto *baseObject = baseType->getAs<ObjCObjectType>()) in getObjCObjectType() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaExprMember.cpp | 300 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, in CheckExtVectorComponent() argument 308 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent() 381 << baseType << SourceRange(CompLoc); in CheckExtVectorComponent()
|
| H A D | SemaDeclObjC.cpp | 1400 ParsedType baseType, in actOnObjCTypeArgsOrProtocolQualifiers() argument 1422 QualType base = GetTypeFromParser(baseType, nullptr); in actOnObjCTypeArgsOrProtocolQualifiers()
|
| H A D | SemaDecl.cpp | 11877 QualType baseType = Context.getBaseElementType(type); in CheckCompleteVariableDeclaration() local 11935 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl(); in CheckCompleteVariableDeclaration() 11945 if (const RecordType *recordType = baseType->getAs<RecordType>()) in CheckCompleteVariableDeclaration()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 1580 ParsedType baseType, in parseObjCTypeArgsOrProtocolQualifiers() argument 1620 QualType BaseT = Actions.GetTypeFromParser(baseType); in parseObjCTypeArgsOrProtocolQualifiers() 1644 baseType, in parseObjCTypeArgsOrProtocolQualifiers() 1759 ParsedType baseType, in parseObjCTypeArgsAndProtocolQualifiers() argument 1771 parseObjCTypeArgsOrProtocolQualifiers(baseType, in parseObjCTypeArgsAndProtocolQualifiers()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Type.h | 1281 ExtQualsTypeCommonBase(const Type *baseType, QualType canon) 1282 : BaseType(baseType), CanonicalType(canon) {} 1316 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals) 1317 : ExtQualsTypeCommonBase(baseType, 5774 QualType baseType = getBaseType(); 5775 while (const auto *ObjT = baseType->getAs<ObjCObjectType>()) { 5779 baseType = ObjT->getBaseType();
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/ |
| H A D | Parser.h | 1485 ParsedType baseType, 1499 ParsedType baseType,
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIARawSymbol.cpp | 238 RAW_METHOD_DUMP_AS(OS, baseType, PDB_BuiltinType); in dump()
|
| /freebsd-12.1/contrib/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 4407 REQUIRED(baseType, MDField, ); \ in ParseDIDerivedType() 4423 scope.Val, baseType.Val, size.Val, align.Val, in ParseDIDerivedType() 4436 OPTIONAL(baseType, MDField, ); \ in ParseDICompositeType() 4454 scope.Val, baseType.Val, size.Val, align.Val, offset.Val, flags.Val, in ParseDICompositeType() 4465 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val, in ParseDICompositeType()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 8061 ParsedType baseType,
|