Searched refs:isPacked (Results 1 - 24 of 24) sorted by relevance

/external/llvm/lib/VMCore/
H A DLLVMContextImpl.h101 bool isPacked; member in struct:llvm::AnonStructTypeKeyInfo::KeyTy
103 ETypes(E), isPacked(P) {}
105 ETypes(that.ETypes), isPacked(that.isPacked) {}
108 isPacked(ST->isPacked()) {}
110 if (isPacked != that.isPacked)
129 Key.isPacked);
H A DType.cpp429 bool isPacked) {
431 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
440 ST->setBody(ETypes, isPacked);
449 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { argument
453 if (isPacked)
524 StructType *StructType::get(LLVMContext &Context, bool isPacked) { argument
525 return get(Context, llvm::ArrayRef<Type*>(), isPacked);
542 StringRef Name, bool isPacked) {
544 ST->setBody(Elements, isPacked);
558 bool isPacked) {
428 get(LLVMContext &Context, ArrayRef<Type*> ETypes, bool isPacked) argument
541 create(LLVMContext &Context, ArrayRef<Type*> Elements, StringRef Name, bool isPacked) argument
557 create(ArrayRef<Type*> Elements, StringRef Name, bool isPacked) argument
[all...]
H A DAsmWriter.cpp277 if (STy->isPacked())
293 if (STy->isPacked())
893 if (CS->getType()->isPacked())
917 if (CS->getType()->isPacked())
H A DConstantFold.cpp341 if (!STy->isPacked()) {
404 if (STy->isPacked())
467 if (!STy->isPacked()) {
627 if (!STy->isPacked()) {
H A DCore.cpp363 return unwrap<StructType>(StructTy)->isPacked();
/external/llvm/include/llvm/
H A DDerivedTypes.h219 bool isPacked = false);
224 bool isPacked = false);
231 bool isPacked = false);
235 static StructType *get(LLVMContext &Context, bool isPacked = false);
243 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } function in class:llvm::StructType
270 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DGeneratedMessageLite.java321 false /* isPacked */)) {
327 true /* isPacked */)) {
435 final boolean isPacked) {
440 this.isPacked = isPacked;
447 private final boolean isPacked; field in class:GeneratedMessageLite.ExtensionDescriptor
465 public boolean isPacked() { method in class:GeneratedMessageLite.ExtensionDescriptor
466 return isPacked;
523 false /* isRepeated */, false /* isPacked */));
533 final boolean isPacked) {
430 ExtensionDescriptor( final Internal.EnumLiteMap<?> enumTypeMap, final int number, final WireFormat.FieldType type, final boolean isRepeated, final boolean isPacked) argument
527 internalInitRepeated( final ContainingType containingTypeDefaultInstance, final MessageLite messageDefaultInstance, final Internal.EnumLiteMap<?> enumTypeMap, final int number, final WireFormat.FieldType type, final boolean isPacked) argument
[all...]
H A DFieldSet.java61 boolean isPacked(); method in interface:FieldSet.FieldDescriptorLite
370 boolean isPacked) {
371 if (isPacked) {
486 !descriptor.isRepeated() && !descriptor.isPacked()) {
568 if (descriptor.isPacked()) {
612 !descriptor.isRepeated() && !descriptor.isPacked()) {
693 if (descriptor.isPacked()) {
369 getWireFormatForFieldType(final WireFormat.FieldType type, boolean isPacked) argument
H A DDescriptors.java698 public boolean isPacked() { method in class:Descriptors.FieldDescriptor
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DTextureMapperQt.h43 virtual bool isPacked() const { return m_isPacked; } function in class:WebCore::BitmapTextureQt
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapper.h63 virtual bool isPacked() const { return false; } function in class:WebCore::BitmapTexture
H A DTextureMapperNode.cpp37 if (!texture || !texture->isValid() || texture->isPacked())
82 if (entry.texture->isLocked() || !entry.texture->isValid() || entry.texture->isPacked())
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DSwitchData.java157 public boolean isPacked() { method in class:SwitchData
H A DRopTranslator.java646 Dop opcode = dataInsn.isPacked() ?
/external/llvm/lib/Target/
H A DTargetData.cpp53 unsigned TyAlign = ST->isPacked() ? 1 : TD.getABITypeAlignment(Ty);
527 if (cast<StructType>(Ty)->isPacked() && abi_or_pref)
/external/llvm/lib/Linker/
H A DLinkModules.cpp177 DSTy->isPacked() != SSTy->isPacked())
224 DstSTy->setBody(Elements, SrcSTy->isPacked());
304 cast<StructType>(Ty)->isPacked());
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp247 if (STy1->isPacked() != STy2->isPacked())
H A DDeadArgumentElimination.cpp703 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked());
/external/llvm/lib/AsmParser/
H A DLLParser.cpp1551 bool isPacked = EatIfPresent(lltok::less);
1561 if (isPacked)
1577 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1580 STy->setBody(Body, isPacked);
2583 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp768 bool isPacked, const FieldDecl *D);
2284 bool isPacked,
2323 if (isPacked && UnpackedAlign > CharBitNum && Offset == UnpackedOffset)
2280 CheckFieldPadding(uint64_t Offset, uint64_t UnpaddedOffset, uint64_t UnpackedOffset, unsigned UnpackedAlign, bool isPacked, const FieldDecl *D) argument
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp300 TypeVals.push_back(ST->isPacked());
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp608 Out << typeName << "_fields, /*isPacked=*/"
609 << (ST->isPacked() ? "true" : "false") << ");";
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp407 if (!STy->isPacked() &&
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli503 [false] otherwise. See the method [llvm::StructType::isPacked]. *)

Completed in 475 milliseconds