HomeSort by: relevance | last modified time | path
    Searched defs:FieldType (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
dtcompile.c 492 UINT8 FieldType;
568 FieldType = DtGetFieldType (Info);
571 if (FieldType != DT_FIELD_TYPE_INLINE_SUBTABLE &&
579 switch (FieldType)
676 FieldLength, FieldType, Info->Flags);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBlocks.h 168 QualType FieldType;
196 QualType fieldType() const {
197 return FieldType;
201 QualType FieldType) {
205 v.FieldType = FieldType;
CGRecordLayoutBuilder.cpp 324 llvm::Type *FieldType = getStorageType(Field);
325 if (LayoutSize < getSize(FieldType))
326 FieldType = getByteArrayType(LayoutSize);
327 setBitFieldInfo(Field, CharUnits::Zero(), FieldType);
330 llvm::Type *FieldType = getStorageType(Field);
344 StorageType = FieldType;
353 getAlignment(FieldType) > getAlignment(StorageType) ||
354 (getAlignment(FieldType) == getAlignment(StorageType) &&
355 getSize(FieldType) > getSize(StorageType)))
356 StorageType = FieldType;
    [all...]
CGBlocks.cpp 346 QualType FieldType;
351 llvm::Type *type, QualType fieldType)
353 Capture(capture), Type(type), FieldType(fieldType) {}
361 auto C = CGBlockInfo::Capture::makeIndex(index, offset, FieldType);
510 return CGF.BlockInfo->getCapture(VD).fieldType();
917 QualType type = capture.fieldType();
1270 capture.fieldType()->isReferenceType()) &&
1273 if (capture.fieldType()->isReferenceType())
1274 addr = EmitLoadOfReference(MakeAddrLValue(addr, capture.fieldType()));
    [all...]
CGClass.cpp 642 QualType FieldType = Field->getType();
663 = CGF.getContext().getAsConstantArrayType(FieldType);
678 CGF.EmitAggregateCopy(LHS, Src, FieldType, CGF.getOverlapForFieldInit(Field),
682 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
684 CGF.pushEHDestroy(dtorKind, LHS.getAddress(CGF), FieldType);
694 QualType FieldType = Field->getType();
695 switch (getEvaluationKind(FieldType)) {
721 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
723 pushEHDestroy(dtorKind, LHS.getAddress(*this), FieldType);
1072 QualType FieldType = Field->getType()
    [all...]
CGDebugInfo.cpp 1449 llvm::DIType *FieldType = createFieldType(
1452 elements.push_back(FieldType);
1461 llvm::DIType *fieldType = createFieldType(
1465 elements.push_back(fieldType);
1511 llvm::DIType *FieldType;
1513 FieldType = createBitFieldType(field, RecordTy, RD);
1516 FieldType =
1521 elements.push_back(FieldType);
4675 llvm::DIType *fieldType;
4681 fieldType
    [all...]
CGExpr.cpp 4319 QualType fieldType =
4323 return LValue::MakeBitfield(Addr, Info, fieldType, FieldBaseInfo,
4330 QualType FieldType = field->getType();
4336 rec->hasAttr<MayAliasAttr>() || FieldType->isVectorType()) {
4360 FieldTBAAInfo.AccessType = CGM.getTBAATypeInfo(FieldType);
4362 getContext().getTypeSizeInChars(FieldType).getQuantity();
4382 hasAnyVptr(FieldType, getContext()))
4399 if (FieldType->isReferenceType())
4401 addr, CGM.getTypes().ConvertTypeForMem(FieldType), field->getName());
4413 if (FieldType->isReferenceType())
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTStructuralEquivalence.cpp 1928 QualType FieldType = F->getType();
1930 while (const auto *ElabType = dyn_cast<ElaboratedType>(FieldType))
1931 FieldType = ElabType->getNamedType();
1933 if (const auto *RecType = dyn_cast<RecordType>(FieldType)) {
1936 if (Context.hasSameType(FieldType, AnonTy))
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaLambda.cpp 1697 QualType FieldType = Capture.getCaptureType();
1709 TSI = Context.getTrivialTypeSourceInfo(FieldType, Loc);
1714 /*Id=*/nullptr, FieldType, TSI, /*BW=*/nullptr,
1718 if (!FieldType->isDependentType()) {
1719 if (RequireCompleteSizedType(Loc, FieldType,
1725 FieldType->isIncompleteType(&Def);
SemaDecl.cpp 17544 QualType FieldType = I->getType();
17545 if (FieldType->isIncompleteType() ||
17546 !Context.getTypeSizeInChars(FieldType).isZero())
SemaDeclAttr.cpp 3719 QualType FieldType = Field->getType();
3720 if (FieldType->isIncompleteType())
3727 if (S.Context.getTypeSize(FieldType) != FirstSize ||
3728 S.Context.getTypeAlign(FieldType) > FirstAlign) {
3730 bool isSize = S.Context.getTypeSize(FieldType) != FirstSize;
3731 unsigned FieldBits = isSize ? S.Context.getTypeSize(FieldType)
3732 : S.Context.getTypeAlign(FieldType);
  /src/sys/external/bsd/acpica/dist/include/
aclocal.h 317 UINT8 FieldType;
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MasmParser.cpp 121 enum FieldType {
137 FieldInfo &addField(StringRef FieldName, FieldType FT,
183 FieldType FT;
204 FieldInitializer(FieldType FT) : FT(FT) {
338 FieldInfo(FieldType FT) : Contents(FT) {}
341 FieldInfo &StructInfo::addField(StringRef FieldName, FieldType FT,
3969 llvm_unreachable("Unhandled FieldType enum");
4122 llvm_unreachable("Unhandled FieldType enum");
4188 llvm_unreachable("Unhandled FieldType enum");

Completed in 76 milliseconds