Searched refs:RTA_ALIGNTO (Results 1 – 3 of 3) sorted by relevance
39 rtattr addr_hdr __attribute__((aligned((RTA_ALIGNTO)))); in TEST()41 __attribute__((aligned((RTA_ALIGNTO)))) = {0, 1, 2, 3, 4, 5}; in TEST()42 rtattr name_hdr __attribute__((aligned((RTA_ALIGNTO)))); in TEST()43 char name[5] __attribute__((aligned((RTA_ALIGNTO)))) = "eth0"; in TEST()44 rtattr mtu_hdr __attribute__((aligned((RTA_ALIGNTO)))); in TEST()45 unsigned mtu __attribute__((aligned((RTA_ALIGNTO)))) = 50; in TEST()
218 #define RTA_ALIGNTO 4U macro219 #define RTA_ALIGN(len) ( ((len)+RTA_ALIGNTO-1) & ~(RTA_ALIGNTO-1) )
65 BUILD_BUG_ON(sizeof(*param) % RTA_ALIGNTO); in crypto_authenc_extractkeys()