Home
last modified time | relevance | path

Searched refs:isPacked (Results 1 – 23 of 23) sorted by relevance

/external/llvm/lib/VMCore/
DType.cpp379 bool isPacked) { in get() argument
387 if (isPacked) in get()
396 ST->setBody(ETypes, isPacked); in get()
400 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument
404 if (isPacked) in setBody()
464 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument
465 return get(Context, llvm::ArrayRef<Type*>(), isPacked); in get()
482 ArrayRef<Type*> Elements, bool isPacked) { in createNamed() argument
484 ST->setBody(Elements, isPacked); in createNamed()
489 bool isPacked) { in createNamed() argument
[all …]
DAsmWriter.cpp271 if (STy->isPacked()) in printStructBody()
287 if (STy->isPacked()) in printStructBody()
838 if (CS->getType()->isPacked()) in WriteConstantInternal()
862 if (CS->getType()->isPacked()) in WriteConstantInternal()
DConstantFold.cpp344 if (!STy->isPacked()) { in getFoldedSizeOf()
407 if (STy->isPacked()) in getFoldedAlignOf()
470 if (!STy->isPacked()) { in getFoldedOffsetOf()
627 if (!STy->isPacked()) { in ConstantFoldCastInstruction()
DCore.cpp323 return unwrap<StructType>(StructTy)->isPacked(); in LLVMIsPackedStruct()
/external/protobuf/java/src/main/java/com/google/protobuf/
DGeneratedMessageLite.java435 final boolean isPacked) { in ExtensionDescriptor() argument
440 this.isPacked = isPacked; in ExtensionDescriptor()
447 private final boolean isPacked; field in GeneratedMessageLite.ExtensionDescriptor
465 public boolean isPacked() { in isPacked() method in GeneratedMessageLite.ExtensionDescriptor
466 return isPacked; in isPacked()
533 final boolean isPacked) { in internalInitRepeated() argument
538 enumTypeMap, number, type, true /* isRepeated */, isPacked)); in internalInitRepeated()
DFieldSet.java61 boolean isPacked(); in isPacked() method
370 boolean isPacked) { in getWireFormatForFieldType() argument
371 if (isPacked) { in getWireFormatForFieldType()
486 !descriptor.isRepeated() && !descriptor.isPacked()) { in writeMessageSetTo()
568 if (descriptor.isPacked()) { in writeField()
612 !descriptor.isRepeated() && !descriptor.isPacked()) { in getMessageSetSerializedSize()
693 if (descriptor.isPacked()) { in computeFieldSize()
DDescriptors.java698 public boolean isPacked() { in isPacked() method in Descriptors.FieldDescriptor
/external/llvm/include/llvm/
DDerivedTypes.h203 bool isPacked = false);
206 bool isPacked = false);
212 bool isPacked = false);
216 static StructType *get(LLVMContext &Context, bool isPacked = false);
224 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function
248 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/external/webkit/Source/WebCore/platform/graphics/qt/
DTextureMapperQt.h43 virtual bool isPacked() const { return m_isPacked; } in isPacked() function
/external/webkit/Source/WebCore/platform/graphics/texmap/
DTextureMapper.h63 virtual bool isPacked() const { return false; } in isPacked() function
DTextureMapperNode.cpp37 if (!texture || !texture->isValid() || texture->isPacked()) in computeCost()
82 if (entry.texture->isLocked() || !entry.texture->isValid() || entry.texture->isPacked()) in purge()
/external/llvm/lib/Linker/
DLinkModules.cpp143 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic()
190 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies()
269 cast<StructType>(Ty)->isPacked()); in getImpl()
/external/llvm/lib/Target/
DTargetData.cpp53 unsigned TyAlign = ST->isPacked() ? 1 : TD.getABITypeAlignment(Ty); in StructLayout()
454 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp247 if (STy1->isPacked() != STy2->isPacked()) in isEquivalentType()
DDeadArgumentElimination.cpp703 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp703 bool isPacked, const FieldDecl *D);
1714 bool isPacked, in CheckFieldPadding() argument
1748 if (isPacked && UnpackedAlign > CharBitNum && Offset == UnpackedOffset) in CheckFieldPadding()
/external/llvm/lib/AsmParser/
DLLParser.cpp1485 bool isPacked = EatIfPresent(lltok::less); in ParseStructDefinition() local
1495 if (isPacked) in ParseStructDefinition()
1511 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct"))) in ParseStructDefinition()
1514 STy->setBody(Body, isPacked); in ParseStructDefinition()
2513 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct)) in ConvertValIDToValue()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp574 << (ST->isPacked() ? "true" : "false") << ");"; in printType()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp264 TypeVals.push_back(ST->isPacked()); in WriteTypeTable()
/external/llvm/lib/Target/CBackend/
DCBackend.cpp530 if (STy->isPacked()) in printType()
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli382 [false] otherwise. See the method [llvm::StructType::isPacked]. *)
/external/llvm/lib/Analysis/
DScalarEvolution.cpp383 if (!STy->isPacked() && in isAlignOf()
/external/webkit/Source/WebCore/
DChangeLog349 (WebCore::BitmapTextureGL::isPacked):