Home | History | Annotate | Download | only in src

Lines Matching defs:bytes

113   unsigned bytes = 0;
163 bytes = STACK_ARG_SIZE(sizeof(void*));
187 bytes += sizeof(void*);
192 if (((*ptr)->alignment - 1) & bytes)
193 bytes = (unsigned)ALIGN(bytes, (*ptr)->alignment);
196 if (bytes < 10 * FFI_SIZEOF_ARG &&
197 bytes + STACK_ARG_SIZE((*ptr)->size) > 10 * FFI_SIZEOF_ARG)
201 bytes = 10 * FFI_SIZEOF_ARG;
205 if (bytes <= 6*4 && bytes + STACK_ARG_SIZE((*ptr)->size) > 6*4)
206 bytes = 6*4;
209 bytes += STACK_ARG_SIZE((*ptr)->size);
214 cif->bytes = bytes;