Home | History | Annotate | Download | only in VMCore

Lines Matching refs:isPacked

429                             bool isPacked) {
431 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
440 ST->setBody(ETypes, isPacked);
449 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) {
453 if (isPacked)
514 StructType *StructType::get(LLVMContext &Context, bool isPacked) {
515 return get(Context, llvm::ArrayRef<Type*>(), isPacked);
532 StringRef Name, bool isPacked) {
534 ST->setBody(Elements, isPacked);
548 bool isPacked) {
551 return create(Elements[0]->getContext(), Elements, Name, isPacked);
623 if (isPacked() != Other->isPacked() ||