Searched refs:baseType (Results 1 - 18 of 18) sorted by relevance

/freebsd-11.0-release/sys/dev/pms/RefTisa/discovery/dm/
H A Ddmlist.h149 #define TD_FIELD_OFFSET(baseType,fieldName) \
150 ((bit32)((bitptr)(&(((baseType *)0)->fieldName))))
152 #define DMLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \
153 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \
154 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
/freebsd-11.0-release/sys/dev/pms/RefTisa/sat/src/
H A Dsmlist.h148 #define TD_FIELD_OFFSET(baseType,fieldName) \
149 ((bit32)((bitptr)(&(((baseType *)0)->fieldName))))
151 #define SMLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \
152 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \
153 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
/freebsd-11.0-release/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdlist.h158 #define TD_FIELD_OFFSET(baseType,fieldName) \
159 ((bit32)((bitptr)(&(((baseType *)0)->fieldName))))
161 #define TDLIST_OBJECT_BASE(baseType,fieldName,fieldPtr) \
162 (void *)fieldPtr == (void *)0 ? (baseType *)0 : \
163 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
H A Dtdioctl.c86 #define agFieldOffset(baseType,fieldName) \
88 ((bit32)((bitptr)(&(((baseType *)0)->fieldName)))) \
/freebsd-11.0-release/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsallist.h438 #define agObjectBase(baseType,fieldName,fieldPtr) \
439 (void * ) fieldPtr == (void *) 0 ? (baseType *) 0 : \
440 ((baseType *)((bit8 *)(fieldPtr) - ((bitptr)(&(((baseType *)0)->fieldName)))))
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprConstant.cpp1481 llvm::Type *baseType,
1511 llvm::Type *baseType = structure->getElementType(fieldIndex);
1512 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base);
1550 llvm::Type *baseType = structure->getElementType(fieldIndex);
1551 elements[fieldIndex] = EmitNullConstantForBase(CGM, baseType, base);
1566 llvm::Type *baseType,
1572 return llvm::Constant::getNullValue(baseType);
H A DCodeGenFunction.cpp1336 /// \param baseType the inner-most element type of the array
1340 static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType baseType, argument
1345 CharUnits baseSize = CGF.getContext().getTypeSizeInChars(baseType);
1490 QualType &baseType,
1508 baseType = elementType;
1558 llvm::Type *baseType = ConvertType(eltType); local
1559 addr = Builder.CreateElementBitCast(addr, baseType, "array.begin");
1567 baseType = eltType;
1489 emitArrayLength(const ArrayType *origArrayType, QualType &baseType, Address &addr) argument
H A DCodeGenFunction.h1773 QualType &baseType,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp631 QualType baseType(splitBaseType.Ty, 0);
634 baseType = baseObj->stripObjCKindOfTypeAndQuals(ctx);
637 return ctx.getObjCObjectType(ctx.getQualifiedType(baseType,
981 QualType baseType = recurse(T->getBaseType()); local
982 if (baseType.isNull())
999 if (baseType.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() &&
1003 return Ctx.getObjCObjectType(baseType, typeArgs,
1263 QualType baseType
1266 ctx.getObjCObjectType(baseType,
H A DASTContext.cpp2155 ASTContext::getExtQualType(const Type *baseType, Qualifiers quals) const { argument
2161 ExtQuals::Profile(ID, baseType, quals);
2170 if (!baseType->isCanonicalUnqualified()) {
2171 SplitQualType canonSplit = baseType->getCanonicalTypeInternal().split();
2179 ExtQuals *eq = new (*this, TypeAlignment) ExtQuals(baseType, canon, quals);
3731 QualType baseType,
3738 isa<ObjCInterfaceType>(baseType))
3739 return baseType;
3743 ObjCObjectTypeImpl::Profile(ID, baseType, typeArgs, protocols, isKindOf);
3753 if (auto baseObject = baseType
3730 getObjCObjectType( QualType baseType, ArrayRef<QualType> typeArgs, ArrayRef<ObjCProtocolDecl *> protocols, bool isKindOf) const argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h1113 ExtQualsTypeCommonBase(const Type *baseType, QualType canon) argument
1114 : BaseType(baseType), CanonicalType(canon) {}
1162 ExtQuals(const Type *baseType, QualType canon, Qualifiers quals) argument
1163 : ExtQualsTypeCommonBase(baseType,
4801 QualType baseType = getBaseType(); local
4802 while (const ObjCObjectType *ObjT = baseType->getAs<ObjCObjectType>()) {
4806 baseType = ObjT->getBaseType();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprMember.cpp276 CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK, argument
284 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
343 << baseType << SourceRange(CompLoc);
H A DSemaDeclObjC.cpp1308 ParsedType baseType,
1330 QualType base = GetTypeFromParser(baseType, nullptr);
1306 actOnObjCTypeArgsOrProtocolQualifiers( Scope *S, ParsedType baseType, SourceLocation lAngleLoc, ArrayRef<IdentifierInfo *> identifiers, ArrayRef<SourceLocation> identifierLocs, SourceLocation rAngleLoc, SourceLocation &typeArgsLAngleLoc, SmallVectorImpl<ParsedType> &typeArgs, SourceLocation &typeArgsRAngleLoc, SourceLocation &protocolLAngleLoc, SmallVectorImpl<Decl *> &protocols, SourceLocation &protocolRAngleLoc, bool warnOnIncompleteProtocols) argument
H A DSemaDecl.cpp10083 QualType baseType = Context.getBaseElementType(type); local
10093 CXXRecordDecl *RD = baseType->getAsCXXRecordDecl();
10095 !Init->isConstantInitializer(Context, baseType->isReferenceType()))
10125 if (const RecordType *recordType = baseType->getAs<RecordType>())
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseObjc.cpp1627 ParsedType baseType,
1667 QualType BaseT = Actions.GetTypeFromParser(baseType);
1691 baseType, local
1767 ParsedType baseType,
1779 parseObjCTypeArgsOrProtocolQualifiers(baseType,
1626 parseObjCTypeArgsOrProtocolQualifiers( ParsedType baseType, SourceLocation &typeArgsLAngleLoc, SmallVectorImpl<ParsedType> &typeArgs, SourceLocation &typeArgsRAngleLoc, SourceLocation &protocolLAngleLoc, SmallVectorImpl<Decl *> &protocols, SmallVectorImpl<SourceLocation> &protocolLocs, SourceLocation &protocolRAngleLoc, bool consumeLastToken, bool warnOnIncompleteProtocols) argument
1766 parseObjCTypeArgsAndProtocolQualifiers( ParsedType baseType, SourceLocation &typeArgsLAngleLoc, SmallVectorImpl<ParsedType> &typeArgs, SourceLocation &typeArgsRAngleLoc, SourceLocation &protocolLAngleLoc, SmallVectorImpl<Decl *> &protocols, SmallVectorImpl<SourceLocation> &protocolLocs, SourceLocation &protocolRAngleLoc, bool consumeLastToken) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1286 ParsedType baseType,
1300 ParsedType baseType,
/freebsd-11.0-release/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp3650 /// line: 7, scope: !1, baseType: !2, size: 32,
3659 REQUIRED(baseType, MDField, ); \
3670 scope.Val, baseType.Val, size.Val, align.Val,
3682 OPTIONAL(baseType, MDField, ); \
3697 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h7262 ParsedType baseType,

Completed in 282 milliseconds