Home | History | Annotate | Download | only in src

Lines Matching refs:alignment

44   FFI_ASSERT(arg->alignment == 0);
56 arg->size = ALIGN(arg->size, (*ptr)->alignment);
59 arg->alignment = (arg->alignment > (*ptr)->alignment) ?
60 arg->alignment : (*ptr)->alignment;
72 arg->size = ALIGN (arg->size, arg->alignment);
82 alignment only, so it completely overrides this functions,
83 which assumes "natural" alignment and padding. */
148 if (((*ptr)->alignment - 1) & bytes)
149 bytes = ALIGN(bytes, (*ptr)->alignment);