Lines Matching refs:NotKnownLayout

6566         struct NotKnownLayout<T = ()> {  in test_known_layout_derive()  struct
6601 struct KL01(NotKnownLayout<AU32>, NotKnownLayout<AU16>); in test_known_layout_derive()
6612 struct KL01Align(NotKnownLayout<AU32>, NotKnownLayout<AU16>); in test_known_layout_derive()
6623 struct KL01Packed(NotKnownLayout<AU32>, NotKnownLayout<AU16>); in test_known_layout_derive()
6634 struct KL01PackedN(NotKnownLayout<AU32>, NotKnownLayout<AU16>); in test_known_layout_derive()
6647 struct KL03(NotKnownLayout, u8); in test_known_layout_derive()
6658 struct KL03Align(NotKnownLayout<AU32>, u8); in test_known_layout_derive()
6669 struct KL03Packed(NotKnownLayout<AU32>, u8); in test_known_layout_derive()
6680 struct KL03PackedN(NotKnownLayout<AU32>, u8); in test_known_layout_derive()
6714 struct KL10(NotKnownLayout<AU32>, [u8]); in test_known_layout_derive()
6717 .extend(DstLayout::for_type::<NotKnownLayout<AU32>>(), None) in test_known_layout_derive()
6728 struct KL10Align(NotKnownLayout<AU32>, [u8]); in test_known_layout_derive()
6733 .extend(DstLayout::for_type::<NotKnownLayout<AU32>>(), None) in test_known_layout_derive()
6744 struct KL10Packed(NotKnownLayout<AU32>, [u8]); in test_known_layout_derive()
6749 .extend(DstLayout::for_type::<NotKnownLayout<AU32>>(), repr_packed) in test_known_layout_derive()
6760 struct KL10PackedN(NotKnownLayout<AU32>, [u8]); in test_known_layout_derive()
6765 .extend(DstLayout::for_type::<NotKnownLayout<AU32>>(), repr_packed) in test_known_layout_derive()
6777 struct KL11(NotKnownLayout<AU64>, u8); in test_known_layout_derive()
6780 .extend(DstLayout::for_type::<NotKnownLayout<AU64>>(), None) in test_known_layout_derive()
6791 struct KL11Align(NotKnownLayout<AU64>, u8); in test_known_layout_derive()
6796 .extend(DstLayout::for_type::<NotKnownLayout<AU64>>(), None) in test_known_layout_derive()
6807 struct KL11Packed(NotKnownLayout<AU64>, u8); in test_known_layout_derive()
6812 .extend(DstLayout::for_type::<NotKnownLayout<AU64>>(), repr_packed) in test_known_layout_derive()
6823 struct KL11PackedN(NotKnownLayout<AU64>, u8); in test_known_layout_derive()
6828 .extend(DstLayout::for_type::<NotKnownLayout<AU64>>(), repr_packed) in test_known_layout_derive()
6922 struct KLF2(NotKnownLayout<u8>, [u8]); in test_known_layout_derive()
6928 struct KLF3(NotKnownLayout<u8>, NotKnownLayout<AU16>, [u8]); in test_known_layout_derive()
6934 struct KLF4(NotKnownLayout<u8>, NotKnownLayout<AU16>, NotKnownLayout<AU32>, [u8]); in test_known_layout_derive()