Lines Matching refs:Align
1004 test!(#[repr(C, packed( 1))] (u8; elain::Align< 2>) => Some( 1)); in test_trailing_field_offset()
1005 test!(#[repr(C, packed( 2))] (u8; elain::Align< 4>) => Some( 2)); in test_trailing_field_offset()
1006 test!(#[repr(C, packed( 4))] (u8; elain::Align< 8>) => Some( 4)); in test_trailing_field_offset()
1007 test!(#[repr(C, packed( 8))] (u8; elain::Align< 16>) => Some( 8)); in test_trailing_field_offset()
1008 test!(#[repr(C, packed( 16))] (u8; elain::Align< 32>) => Some( 16)); in test_trailing_field_offset()
1009 test!(#[repr(C, packed( 32))] (u8; elain::Align< 64>) => Some( 32)); in test_trailing_field_offset()
1010 test!(#[repr(C, packed( 64))] (u8; elain::Align< 128>) => Some( 64)); in test_trailing_field_offset()
1011 test!(#[repr(C, packed( 128))] (u8; elain::Align< 256>) => Some( 128)); in test_trailing_field_offset()
1012 test!(#[repr(C, packed( 256))] (u8; elain::Align< 512>) => Some( 256)); in test_trailing_field_offset()
1013 test!(#[repr(C, packed( 512))] (u8; elain::Align< 1024>) => Some( 512)); in test_trailing_field_offset()
1014 test!(#[repr(C, packed( 1024))] (u8; elain::Align< 2048>) => Some( 1024)); in test_trailing_field_offset()
1015 test!(#[repr(C, packed( 2048))] (u8; elain::Align< 4096>) => Some( 2048)); in test_trailing_field_offset()
1016 test!(#[repr(C, packed( 4096))] (u8; elain::Align< 8192>) => Some( 4096)); in test_trailing_field_offset()
1017 test!(#[repr(C, packed( 8192))] (u8; elain::Align< 16384>) => Some( 8192)); in test_trailing_field_offset()
1018 test!(#[repr(C, packed( 16384))] (u8; elain::Align< 32768>) => Some( 16384)); in test_trailing_field_offset()
1019 test!(#[repr(C, packed( 32768))] (u8; elain::Align< 65536>) => Some( 32768)); in test_trailing_field_offset()
1020 test!(#[repr(C, packed( 65536))] (u8; elain::Align< 131072>) => Some( 65536)); in test_trailing_field_offset()
1038 test!(#[repr(C, align( 1))] (u8; elain::Align< 2>) => Some( 2)); in test_trailing_field_offset()
1039 test!(#[repr(C, align( 2))] (u8; elain::Align< 4>) => Some( 4)); in test_trailing_field_offset()
1040 test!(#[repr(C, align( 4))] (u8; elain::Align< 8>) => Some( 8)); in test_trailing_field_offset()
1041 test!(#[repr(C, align( 8))] (u8; elain::Align< 16>) => Some( 16)); in test_trailing_field_offset()
1042 test!(#[repr(C, align( 16))] (u8; elain::Align< 32>) => Some( 32)); in test_trailing_field_offset()
1043 test!(#[repr(C, align( 32))] (u8; elain::Align< 64>) => Some( 64)); in test_trailing_field_offset()
1044 test!(#[repr(C, align( 64))] (u8; elain::Align< 128>) => Some( 128)); in test_trailing_field_offset()
1045 test!(#[repr(C, align( 128))] (u8; elain::Align< 256>) => Some( 256)); in test_trailing_field_offset()
1046 test!(#[repr(C, align( 256))] (u8; elain::Align< 512>) => Some( 512)); in test_trailing_field_offset()
1047 test!(#[repr(C, align( 512))] (u8; elain::Align< 1024>) => Some( 1024)); in test_trailing_field_offset()
1048 test!(#[repr(C, align( 1024))] (u8; elain::Align< 2048>) => Some( 2048)); in test_trailing_field_offset()
1049 test!(#[repr(C, align( 2048))] (u8; elain::Align< 4096>) => Some( 4096)); in test_trailing_field_offset()
1050 test!(#[repr(C, align( 4096))] (u8; elain::Align< 8192>) => Some( 8192)); in test_trailing_field_offset()
1051 test!(#[repr(C, align( 8192))] (u8; elain::Align< 16384>) => Some( 16384)); in test_trailing_field_offset()
1052 test!(#[repr(C, align( 16384))] (u8; elain::Align< 32768>) => Some( 32768)); in test_trailing_field_offset()
1053 test!(#[repr(C, align( 32768))] (u8; elain::Align< 65536>) => Some( 65536)); in test_trailing_field_offset()
1077 assert_eq!(align_of!([elain::Align<1>]), Some(1)); in test_align_of_dst()
1078 assert_eq!(align_of!([elain::Align<2>]), Some(2)); in test_align_of_dst()
1079 assert_eq!(align_of!([elain::Align<4>]), Some(4)); in test_align_of_dst()
1080 assert_eq!(align_of!([elain::Align<8>]), Some(8)); in test_align_of_dst()
1081 assert_eq!(align_of!([elain::Align<16>]), Some(16)); in test_align_of_dst()
1082 assert_eq!(align_of!([elain::Align<32>]), Some(32)); in test_align_of_dst()
1083 assert_eq!(align_of!([elain::Align<64>]), Some(64)); in test_align_of_dst()
1084 assert_eq!(align_of!([elain::Align<128>]), Some(128)); in test_align_of_dst()
1085 assert_eq!(align_of!([elain::Align<256>]), Some(256)); in test_align_of_dst()
1086 assert_eq!(align_of!([elain::Align<512>]), Some(512)); in test_align_of_dst()
1087 assert_eq!(align_of!([elain::Align<1024>]), Some(1024)); in test_align_of_dst()
1088 assert_eq!(align_of!([elain::Align<2048>]), Some(2048)); in test_align_of_dst()
1089 assert_eq!(align_of!([elain::Align<4096>]), Some(4096)); in test_align_of_dst()
1090 assert_eq!(align_of!([elain::Align<8192>]), Some(8192)); in test_align_of_dst()
1091 assert_eq!(align_of!([elain::Align<16384>]), Some(16384)); in test_align_of_dst()
1092 assert_eq!(align_of!([elain::Align<32768>]), Some(32768)); in test_align_of_dst()
1093 assert_eq!(align_of!([elain::Align<65536>]), Some(65536)); in test_align_of_dst()