Home
last modified time | relevance | path

Searched refs:aligned (Results 1 – 5 of 5) sorted by relevance

/busybox-1.35.0/include/
Dplatform.h339 # define ALIGN1 __attribute__((aligned(1)))
340 # define ALIGN2 __attribute__((aligned(2)))
341 # define ALIGN4 __attribute__((aligned(4)))
348 #define ALIGN8 __attribute__((aligned(8)))
349 #define ALIGN_PTR __attribute__((aligned(sizeof(void*))))
/busybox-1.35.0/docs/
Dkeep_data_small.txt159 static struct termios term_orig __attribute__ ((aligned (4)));
160 static struct termios term_vi __attribute__ ((aligned (4)));
188 } s28 = { 1 }; // struct will be aligned to 4 bytes
192 } s32 = { 1 }; // struct will be aligned to 32 bytes
195 char vc32[32] = { 1 }; // aligned to 32 bytes
199 are still aligned to 32 bytes.
/busybox-1.35.0/scripts/kconfig/
Dzconf.tab.c_shipped254 /* A type that is properly aligned for any stack member. */
261 /* The size of the maximum gap between one aligned stack and the next. */
291 stack. Advance YYPTR to a properly aligned location for the next
/busybox-1.35.0/editors/
Dsed1line.txt41 # number each line of a file (number on left, right-aligned)
/busybox-1.35.0/shell/
Dash.c1608 size_t aligned; in stalloc() local
1610 aligned = SHELL_ALIGN(nbytes); in stalloc()
1611 if (aligned > g_stacknleft) { in stalloc()
1616 blocksize = aligned; in stalloc()
1632 g_stacknxt += aligned; in stalloc()
1633 g_stacknleft -= aligned; in stalloc()