Lines Matching refs:var
39 #define SDK_ALIGN(var, alignbytes) var __attribute__((aligned(alignbytes))) argument
43 #define SDK_L1DCACHE_ALIGN(var) SDK_ALIGN(var, FSL_FEATURE_L1DCACHE_LINESIZE_BYTE) argument
48 #define SDK_L2CACHE_ALIGN(var) SDK_ALIGN(var, FSL_FEATURE_L2CACHE_LINESIZE_BYTE) argument
52 #define SDK_SIZEALIGN(var, alignbytes) \ argument
53 ((unsigned int)((var) + ((alignbytes)-1U)) & (unsigned int)(~(unsigned int)((alignbytes)-1U)))
64 #define AT_NONCACHEABLE_SECTION_INIT(var) __attribute__((section("NonCacheable.init"))) var argument
65 #define AT_NONCACHEABLE_SECTION(var) __attribute__((section("NonCacheable"))) var argument
66 #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) \ argument
67 __attribute__((section("NonCacheable.init"))) var __attribute__((aligned(alignbytes)))
68 #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) \ argument
69 __attribute__((section("NonCacheable"))) var __attribute__((aligned(alignbytes)))