• Home
  • Raw
  • Download

Lines Matching refs:intarg_count

665   unsigned fparg_count = 0, intarg_count = 0;  in ffi_prep_cif_machdep()  local
756 intarg_count++; in ffi_prep_cif_machdep()
766 intarg_count++; in ffi_prep_cif_machdep()
771 intarg_count++; in ffi_prep_cif_machdep()
801 && (intarg_count & 0x01) != 0) in ffi_prep_cif_machdep()
802 intarg_count++; in ffi_prep_cif_machdep()
813 intarg_count = FFI_ALIGN(intarg_count, 2); in ffi_prep_cif_machdep()
815 intarg_count = FFI_ALIGN(intarg_count, 4); in ffi_prep_cif_machdep()
823 intarg_count++; in ffi_prep_cif_machdep()
829 if (intarg_count == NUM_GPR_ARG_REGISTERS-1 in ffi_prep_cif_machdep()
830 || (intarg_count >= NUM_GPR_ARG_REGISTERS in ffi_prep_cif_machdep()
831 && (intarg_count & 0x01) != 0)) in ffi_prep_cif_machdep()
832 intarg_count++; in ffi_prep_cif_machdep()
833 intarg_count += 2; in ffi_prep_cif_machdep()
842 intarg_count = FFI_ALIGN(intarg_count, align_words); in ffi_prep_cif_machdep()
844 intarg_count += (size_al + 7) / 8; in ffi_prep_cif_machdep()
852 intarg_count = FFI_ALIGN(intarg_count, align_words); in ffi_prep_cif_machdep()
858 intarg_count += (size_al + 7) / 8; in ffi_prep_cif_machdep()
860 intarg_count += (size_al + 3) / 4; in ffi_prep_cif_machdep()
868 intarg_count++; in ffi_prep_cif_machdep()
891 if ((intarg_count + fparg_count) > NUM_GPR_ARG_REGISTERS) in ffi_prep_cif_machdep()
892 bytes += (intarg_count + fparg_count) * sizeof(long); in ffi_prep_cif_machdep()
894 if ((intarg_count + 2 * fparg_count) > NUM_GPR_ARG_REGISTERS) in ffi_prep_cif_machdep()
895 bytes += (intarg_count + 2 * fparg_count) * sizeof(long); in ffi_prep_cif_machdep()