Home | History | Annotate | Download | only in libffi_osx

Lines Matching defs:bytes

139 	unsigned int	bytes	= 0;
175 bytes = STACK_ARG_SIZE(sizeof(void*));
198 if ((align - 1) & bytes)
199 bytes = ALIGN(bytes, align);
201 bytes += STACK_ARG_SIZE((*ptr)->size);
209 bytes += sizeof(void*);
214 if (((*ptr)->alignment - 1) & bytes)
215 bytes = ALIGN(bytes, (*ptr)->alignment);
217 bytes += STACK_ARG_SIZE((*ptr)->size);
222 cif->bytes = bytes;