Searched refs:intarg_count (Results 1 – 3 of 3) sorted by relevance
109 int intarg_count; in ffi_prep_args_SYSV() local146 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 …]
278 int fparg_count = 0, intarg_count = 0; in ffi_prep_cif_machdep() local333 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 …]
2214 (ffi_prep_cif_machdep): Correct intarg_count for structures.