Home | History | Annotate | Download | only in src

Lines Matching defs:bytes

113   unsigned bytes = 0;
159 bytes = STACK_ARG_SIZE(sizeof(void*));
179 bytes += sizeof(void*);
184 if (((*ptr)->alignment - 1) & bytes)
185 bytes = (unsigned)ALIGN(bytes, (*ptr)->alignment);
188 if (bytes < 10 * FFI_SIZEOF_ARG &&
189 bytes + STACK_ARG_SIZE((*ptr)->size) > 10 * FFI_SIZEOF_ARG)
193 bytes = 10 * FFI_SIZEOF_ARG;
197 if (bytes <= 6*4 && bytes + STACK_ARG_SIZE((*ptr)->size) > 6*4)
198 bytes = 6*4;
201 bytes += STACK_ARG_SIZE((*ptr)->size);
206 cif->bytes = bytes;