HomeSort by: relevance | last modified time | path
    Searched defs:sub_count (Results 1 - 8 of 8) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/
ppc-sysv-tdep.c 1154 LONGEST sub_count; local
1159 sub_count = ppc64_aggregate_candidate
1161 if (sub_count == -1)
1165 count += sub_count;
1167 count = std::max (count, sub_count);
aarch64-tdep.c 1591 int sub_count = aapcs_is_vfp_call_or_return_candidate_1 local
1593 if (sub_count == -1)
1595 count += sub_count;
arm-tdep.c 4535 int sub_count = 0; local
4538 sub_count = arm_vfp_cprc_sub_candidate (t->field (i).type (),
4540 if (sub_count == -1)
4542 count += sub_count;
4564 int sub_count = arm_vfp_cprc_sub_candidate (t->field (i).type (), local
4566 if (sub_count == -1)
4568 count = (count > sub_count ? count : sub_count);
  /src/external/gpl3/gdb/dist/gdb/
ppc-sysv-tdep.c 1154 LONGEST sub_count; local
1159 sub_count = ppc64_aggregate_candidate
1161 if (sub_count == -1)
1165 count += sub_count;
1167 count = std::max (count, sub_count);
aarch64-tdep.c 1609 int sub_count = aapcs_is_vfp_call_or_return_candidate_1 local
1611 if (sub_count == -1)
1613 count += sub_count;
arm-tdep.c 4538 int sub_count = 0; local
4541 sub_count = arm_vfp_cprc_sub_candidate (t->field (i).type (),
4543 if (sub_count == -1)
4545 count += sub_count;
4567 int sub_count = arm_vfp_cprc_sub_candidate (t->field (i).type (), local
4569 if (sub_count == -1)
4571 count = (count > sub_count ? count : sub_count);
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-call.cc 210 int sub_count; local
254 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep,
257 if (sub_count < 0)
259 count += sub_count;
275 int sub_count; local
289 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep,
292 if (sub_count < 0)
294 count = count > sub_count ? count : sub_count;
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-call.cc 218 int sub_count; local
262 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep,
265 if (sub_count < 0)
267 count += sub_count;
283 int sub_count; local
297 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep,
300 if (sub_count < 0)
302 count = count > sub_count ? count : sub_count;

Completed in 41 milliseconds