Home
last modified time | relevance | path

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

12

/external/llvm/lib/IR/
DType.cpp403 bool isPacked) { in get() argument
405 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
413 ST->setBody(ETypes, isPacked); in get()
422 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument
426 if (isPacked) in setBody()
495 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument
496 return get(Context, None, isPacked); in get()
515 StringRef Name, bool isPacked) { in create() argument
517 ST->setBody(Elements, isPacked); in create()
530 bool isPacked) { in create() argument
[all …]
DLLVMContextImpl.h82 bool isPacked; member
84 ETypes(E), isPacked(P) {} in KeyTy()
86 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy()
88 if (isPacked != that.isPacked)
107 Key.isPacked); in getHashValue()
DDataLayout.cpp49 unsigned TyAlign = ST->isPacked() ? 1 : DL.getABITypeAlignment(Ty); in StructLayout()
641 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
DConstantFold.cpp360 if (!STy->isPacked()) { in getFoldedSizeOf()
423 if (STy->isPacked()) in getFoldedAlignOf()
486 if (!STy->isPacked()) { in getFoldedOffsetOf()
651 if (!STy->isPacked()) { in ConstantFoldCastInstruction()
DAsmWriter.cpp522 if (STy->isPacked()) in printStructBody()
538 if (STy->isPacked()) in printStructBody()
1225 if (CS->getType()->isPacked()) in WriteConstantInternal()
1249 if (CS->getType()->isPacked()) in WriteConstantInternal()
/external/llvm/include/llvm/IR/
DDerivedTypes.h217 bool isPacked = false);
222 bool isPacked = false);
229 bool isPacked = false);
233 static StructType *get(LLVMContext &Context, bool isPacked = false);
241 bool isPacked() const { return (getSubclassData() & SCDB_Packed) != 0; } in isPacked() function
268 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
/external/protobuf/java/src/main/java/com/google/protobuf/
DGeneratedMessageLite.java658 final boolean isPacked, in newRepeatedGeneratedExtension() argument
667 enumTypeMap, number, type, true /* isRepeated */, isPacked), in newRepeatedGeneratedExtension()
679 final boolean isPacked) { in ExtensionDescriptor() argument
684 this.isPacked = isPacked; in ExtensionDescriptor()
691 final boolean isPacked; field in GeneratedMessageLite.ExtensionDescriptor
709 public boolean isPacked() { in isPacked() method in GeneratedMessageLite.ExtensionDescriptor
710 return isPacked; in isPacked()
DFieldSet.java62 boolean isPacked(); in isPacked() method
468 boolean isPacked) { in getWireFormatForFieldType() argument
469 if (isPacked) { in getWireFormatForFieldType()
628 !descriptor.isRepeated() && !descriptor.isPacked()) { in writeMessageSetTo()
723 if (descriptor.isPacked()) { in writeField()
787 && !descriptor.isRepeated() && !descriptor.isPacked()) { in getMessageSetSerializedSize()
888 if (descriptor.isPacked()) { in computeFieldSize()
DDescriptors.java896 public boolean isPacked() { in isPacked() method in Descriptors.FieldDescriptor
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbolTypeUDT.h41 FORWARD_SYMBOL_METHOD(isPacked)
DPDBSymbolTypeTypedef.h41 FORWARD_SYMBOL_METHOD(isPacked)
DPDBSymbolTypeEnum.h45 FORWARD_SYMBOL_METHOD(isPacked)
DPDBSymbolTypeBaseClass.h43 FORWARD_SYMBOL_METHOD(isPacked)
DIPDBRawSymbol.h181 virtual bool isPacked() const = 0;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DSwitchData.java157 public boolean isPacked() { in isPacked() method in SwitchData
DRopTranslator.java646 Dop opcode = dataInsn.isPacked() ? in visitSwitchInsn()
/external/llvm/lib/Linker/
DLinkModules.cpp193 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic()
228 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies()
237 DTy->setBody(ETypes, STy->isPacked()); in finishType()
330 bool IsPacked = STy->isPacked(); in get()
1623 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
/external/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp660 if (STyL->isPacked() != STyR->isPacked()) in cmpTypes()
661 return cmpNumbers(STyL->isPacked(), STyR->isPacked()); in cmpTypes()
DDeadArgumentElimination.cpp828 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
/external/llvm/include/llvm/DebugInfo/PDB/DIA/
DDIARawSymbol.h173 bool isPacked() const override;
/external/llvm/unittests/DebugInfo/PDB/
DPDBApiTest.cpp251 MOCK_SYMBOL_ACCESSOR(isPacked)
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp761 bool isPacked, const FieldDecl *D);
1921 bool isPacked, in CheckFieldPadding() argument
1960 if (isPacked && UnpackedAlign > CharBitNum && Offset == UnpackedOffset) in CheckFieldPadding()
/external/llvm/lib/AsmParser/
DLLParser.cpp1986 bool isPacked = EatIfPresent(lltok::less); in ParseStructDefinition() local
1996 if (isPacked) in ParseStructDefinition()
2012 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct"))) in ParseStructDefinition()
2015 STy->setBody(Body, isPacked); in ParseStructDefinition()
3989 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct)) in ConvertValIDToValue()
/external/llvm/lib/DebugInfo/PDB/DIA/
DDIARawSymbol.cpp990 bool DIARawSymbol::isPacked() const { in isPacked() function in DIARawSymbol
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp633 << (ST->isPacked() ? "true" : "false") << ");"; in printType()

12