/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 100 bool isPacked; member 102 ETypes(E), isPacked(P) {} in KeyTy() 105 isPacked(ST->isPacked()) {} in KeyTy() 107 if (isPacked != that.isPacked) 126 Key.isPacked); in getHashValue()
|
D | Type.cpp | 406 bool isPacked) { in get() argument 408 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get() 417 ST->setBody(ETypes, isPacked); in get() 426 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { in setBody() argument 430 if (isPacked) in setBody() 501 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() argument 502 return get(Context, llvm::ArrayRef<Type*>(), isPacked); in get() 519 StringRef Name, bool isPacked) { in create() argument 521 ST->setBody(Elements, isPacked); in create() 534 bool isPacked) { in create() argument [all …]
|
D | DataLayout.cpp | 53 unsigned TyAlign = ST->isPacked() ? 1 : TD.getABITypeAlignment(Ty); in StructLayout() 583 if (cast<StructType>(Ty)->isPacked() && abi_or_pref) in getAlignment()
|
D | AsmWriter.cpp | 296 if (STy->isPacked()) in printStructBody() 312 if (STy->isPacked()) in printStructBody() 980 if (CS->getType()->isPacked()) in WriteConstantInternal() 1004 if (CS->getType()->isPacked()) in WriteConstantInternal()
|
D | ConstantFold.cpp | 345 if (!STy->isPacked()) { in getFoldedSizeOf() 408 if (STy->isPacked()) in getFoldedAlignOf() 471 if (!STy->isPacked()) { in getFoldedOffsetOf() 628 if (!STy->isPacked()) { in ConstantFoldCastInstruction()
|
D | Core.cpp | 370 return unwrap<StructType>(StructTy)->isPacked(); in LLVMIsPackedStruct()
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | GeneratedMessageLite.java | 435 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()
|
D | FieldSet.java | 61 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()
|
D | Descriptors.java | 698 public boolean isPacked() { in isPacked() method in Descriptors.FieldDescriptor
|
/external/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 217 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/webkit/Source/WebCore/platform/graphics/qt/ |
D | TextureMapperQt.h | 43 virtual bool isPacked() const { return m_isPacked; } in isPacked() function
|
/external/webkit/Source/WebCore/platform/graphics/texmap/ |
D | TextureMapper.h | 63 virtual bool isPacked() const { return false; } in isPacked() function
|
D | TextureMapperNode.cpp | 37 if (!texture || !texture->isValid() || texture->isPacked()) in computeCost() 82 if (entry.texture->isLocked() || !entry.texture->isValid() || entry.texture->isPacked()) in purge()
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | SwitchData.java | 157 public boolean isPacked() { in isPacked() method in SwitchData
|
D | RopTranslator.java | 646 Dop opcode = dataInsn.isPacked() ? in visitSwitchInsn()
|
/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 177 DSTy->isPacked() != SSTy->isPacked()) in areTypesIsomorphic() 224 DstSTy->setBody(Elements, SrcSTy->isPacked()); in linkDefinedTypeBodies() 304 cast<StructType>(Ty)->isPacked()); in getImpl()
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 247 if (STy1->isPacked() != STy2->isPacked()) in isEquivalentType()
|
D | DeadArgumentElimination.cpp | 744 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); in RemoveDeadStuffFromFunction()
|
/external/clang/lib/AST/ |
D | RecordLayoutBuilder.cpp | 772 bool isPacked, const FieldDecl *D); 2304 bool isPacked, in CheckFieldPadding() argument 2343 if (isPacked && UnpackedAlign > CharBitNum && Offset == UnpackedOffset) in CheckFieldPadding()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 1802 bool isPacked = EatIfPresent(lltok::less); in ParseStructDefinition() local 1812 if (isPacked) in ParseStructDefinition() 1828 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct"))) in ParseStructDefinition() 1831 STy->setBody(Body, isPacked); in ParseStructDefinition() 2834 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct)) in ConvertValIDToValue()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 590 StructType *Res = StructType::get(*MS.C, Elements, ST->isPacked()); in getShadowTy()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 621 << (ST->isPacked() ? "true" : "false") << ");"; in printType()
|
/external/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 342 TypeVals.push_back(ST->isPacked()); in WriteTypeTable()
|
/external/llvm/lib/Transforms/Scalar/ |
D | SROA.cpp | 3371 STy->isPacked()); in getTypePartition()
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.mli | 503 [false] otherwise. See the method [llvm::StructType::isPacked]. *)
|