Lines Matching refs:var

355 #define SDK_ALIGN(var, alignbytes) SDK_PRAGMA(data_alignment = alignbytes) var  argument
358 #define SDK_ALIGN(var, alignbytes) __attribute__((aligned(alignbytes))) var
361 #define SDK_ALIGN(var, alignbytes) var __attribute__((aligned(alignbytes)))
368 #define SDK_L1DCACHE_ALIGN(var) SDK_ALIGN(var, FSL_FEATURE_L1DCACHE_LINESIZE_BYTE) argument
372 #define SDK_L2CACHE_ALIGN(var) SDK_ALIGN(var, FSL_FEATURE_L2CACHE_LINESIZE_BYTE) argument
376 #define SDK_SIZEALIGN(var, alignbytes) \ argument
377 ((unsigned int)((var) + ((alignbytes)-1U)) & (unsigned int)(~(unsigned int)((alignbytes)-1U)))
392 #define AT_NONCACHEABLE_SECTION(var) var @"NonCacheable" argument
393 #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) SDK_PRAGMA(data_alignment = alignbytes) var argument
394 #define AT_NONCACHEABLE_SECTION_INIT(var) var @"NonCacheable.init" argument
395 #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) \ argument
396 SDK_PRAGMA(data_alignment = alignbytes) var @"NonCacheable.init"
399 #define AT_NONCACHEABLE_SECTION_INIT(var) __attribute__((section("NonCacheable.init"))) var
400 #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) \
401 __attribute__((section("NonCacheable.init"))) __attribute__((aligned(alignbytes))) var
403 #define AT_NONCACHEABLE_SECTION(var) __attribute__((section("NonCacheable"), zero_init)) var
404 #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) \
405 __attribute__((section("NonCacheable"), zero_init)) __attribute__((aligned(alignbytes))) var
407 #define AT_NONCACHEABLE_SECTION(var) __attribute__((section(".bss.NonCacheable"))) var
408 #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) \
409 __attribute__((section(".bss.NonCacheable"))) __attribute__((aligned(alignbytes))) var
422 #define AT_NONCACHEABLE_SECTION_INIT(var) __attribute__((section("NonCacheable.init"))) var
423 #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) \
424 __attribute__((section("NonCacheable.init"))) var __attribute__((aligned(alignbytes)))
425 #define AT_NONCACHEABLE_SECTION(var) __attribute__((section("NonCacheable,\"aw\",%nobits " __CS)))
426 #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) \
427 …__attribute__((section("NonCacheable,\"aw\",%nobits " __CS))) var __attribute__((aligned(alignbyte…
434 #define AT_NONCACHEABLE_SECTION(var) var
435 #define AT_NONCACHEABLE_SECTION_ALIGN(var, alignbytes) SDK_ALIGN(var, alignbytes)
436 #define AT_NONCACHEABLE_SECTION_INIT(var) var
437 #define AT_NONCACHEABLE_SECTION_ALIGN_INIT(var, alignbytes) SDK_ALIGN(var, alignbytes)
449 #define AT_QUICKACCESS_SECTION_DATA(var) var @"DataQuickAccess" argument
450 #define AT_QUICKACCESS_SECTION_DATA_ALIGN(var, alignbytes) \ argument
451 SDK_PRAGMA(data_alignment = alignbytes) var @"DataQuickAccess"
454 #define AT_QUICKACCESS_SECTION_DATA(var) __attribute__((section("DataQuickAccess"))) var
455 #define AT_QUICKACCESS_SECTION_DATA_ALIGN(var, alignbytes) \
456 __attribute__((section("DataQuickAccess"))) __attribute__((aligned(alignbytes))) var
459 #define AT_QUICKACCESS_SECTION_DATA(var) __attribute__((section("DataQuickAccess"))) var
460 #define AT_QUICKACCESS_SECTION_DATA_ALIGN(var, alignbytes) \
461 __attribute__((section("DataQuickAccess"))) var __attribute__((aligned(alignbytes)))