Home
last modified time | relevance | path

Searched refs:intarg_count (Results 1 – 3 of 3) sorted by relevance

/external/libffi/src/powerpc/
Dffi.c109 int intarg_count; in ffi_prep_args_SYSV() local
146 intarg_count = 0; in ffi_prep_args_SYSV()
163 intarg_count++; in ffi_prep_args_SYSV()
198 if (intarg_count >= NUM_GPR_ARG_REGISTERS in ffi_prep_args_SYSV()
199 && intarg_count % 2 != 0) in ffi_prep_args_SYSV()
201 intarg_count++; in ffi_prep_args_SYSV()
226 if (intarg_count >= NUM_GPR_ARG_REGISTERS - 3) in ffi_prep_args_SYSV()
228 if (intarg_count < NUM_GPR_ARG_REGISTERS) in ffi_prep_args_SYSV()
229 intarg_count += NUM_GPR_ARG_REGISTERS - intarg_count; in ffi_prep_args_SYSV()
248 intarg_count +=4; in ffi_prep_args_SYSV()
[all …]
Dffi_darwin.c278 int fparg_count = 0, intarg_count = 0; in ffi_prep_cif_machdep() local
333 intarg_count++; in ffi_prep_cif_machdep()
358 && intarg_count%2 != 0) in ffi_prep_cif_machdep()
359 intarg_count++; in ffi_prep_cif_machdep()
369 && intarg_count%2 != 0) in ffi_prep_cif_machdep()
370 intarg_count++; in ffi_prep_cif_machdep()
371 intarg_count +=2; in ffi_prep_cif_machdep()
381 if (intarg_count == NUM_GPR_ARG_REGISTERS-1 in ffi_prep_cif_machdep()
382 || (intarg_count >= NUM_GPR_ARG_REGISTERS && intarg_count%2 != 0)) in ffi_prep_cif_machdep()
383 intarg_count++; in ffi_prep_cif_machdep()
[all …]
/external/libffi/
DChangeLog2214 (ffi_prep_cif_machdep): Correct intarg_count for structures.