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

12

/external/llvm/lib/IR/
H A DLLVMContextImpl.h103 bool isPacked; member in struct:llvm::AnonStructTypeKeyInfo::KeyTy
105 ETypes(E), isPacked(P) {}
108 isPacked(ST->isPacked()) {}
110 if (isPacked != that.isPacked)
129 Key.isPacked);
H A DType.cpp400 bool isPacked) {
402 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
411 ST->setBody(ETypes, isPacked);
420 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) { argument
424 if (isPacked)
495 StructType *StructType::get(LLVMContext &Context, bool isPacked) { argument
496 return get(Context, None, isPacked);
513 StringRef Name, bool isPacked) {
515 ST->setBody(Elements, isPacked);
528 bool isPacked) {
399 get(LLVMContext &Context, ArrayRef<Type*> ETypes, bool isPacked) argument
512 create(LLVMContext &Context, ArrayRef<Type*> Elements, StringRef Name, bool isPacked) argument
527 create(ArrayRef<Type*> Elements, StringRef Name, bool isPacked) argument
[all...]
H A DDataLayout.cpp54 unsigned TyAlign = ST->isPacked() ? 1 : DL.getABITypeAlignment(Ty);
650 if (cast<StructType>(Ty)->isPacked() && abi_or_pref)
H A DAsmWriter.cpp277 if (STy->isPacked())
293 if (STy->isPacked())
955 if (CS->getType()->isPacked())
979 if (CS->getType()->isPacked())
H A DConstantFold.cpp346 if (!STy->isPacked()) {
409 if (STy->isPacked())
472 if (!STy->isPacked()) {
632 if (!STy->isPacked()) {
H A DCore.cpp457 return unwrap<StructType>(StructTy)->isPacked();
/external/llvm/include/llvm/IR/
H A 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; } function in class:llvm::StructType
268 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/chromium_org/third_party/angle/src/common/
H A Dblocklayout.h109 bool isPacked() const { return mEncoderStrategy == ENCODE_PACKED; } function in class:sh::HLSLBlockEncoder
H A Dblocklayout.cpp135 if (!isPacked() ||
156 else if (isPacked())
184 else if (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/Transforms/IPO/
H A DMergeFunctions.cpp664 if (STyL->isPacked() != STyR->isPacked())
665 return cmpNumbers(STyL->isPacked(), STyR->isPacked());
H A DDeadArgumentElimination.cpp798 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked());
/external/llvm/lib/Linker/
H A DLinkModules.cpp180 DSTy->isPacked() != SSTy->isPacked())
227 DstSTy->setBody(Elements, SrcSTy->isPacked());
307 cast<StructType>(Ty)->isPacked());
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp740 bool isPacked, const FieldDecl *D);
1891 bool isPacked,
1930 if (isPacked && UnpackedAlign > CharBitNum && Offset == UnpackedOffset)
1887 CheckFieldPadding(uint64_t Offset, uint64_t UnpaddedOffset, uint64_t UnpackedOffset, unsigned UnpackedAlign, bool isPacked, const FieldDecl *D) argument
/external/llvm/lib/AsmParser/
H A DLLParser.cpp2014 bool isPacked = EatIfPresent(lltok::less);
2024 if (isPacked)
2040 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2043 STy->setBody(Body, isPacked);
3059 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp430 TypeVals.push_back(ST->isPacked());
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp629 Out << typeName << "_fields, /*isPacked=*/"
630 << (ST->isPacked() ? "true" : "false") << ");";
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1727 aggregateIsPacked = STy->isPacked();
/external/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp770 StructType *Res = StructType::get(*MS.C, Elements, ST->isPacked());
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp3089 STy->isPacked());

Completed in 1342 milliseconds

12