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

  /src/external/gpl3/gcc/dist/gcc/config/mcore/
mcore.cc 1617 int next_amount;
1619 next_amount = (size >= 4 ? 4 : (size >= 2 ? 2 : 1));
1620 next_amount = MIN (next_amount, align);
1622 amount[next] = next_amount;
1623 mode[next] = mode_from_align[next_amount];
1629 offset_ld += next_amount;
1630 size -= next_amount;
1613 int next_amount; local
  /src/external/gpl3/gcc.old/dist/gcc/config/mcore/
mcore.cc 1617 int next_amount;
1619 next_amount = (size >= 4 ? 4 : (size >= 2 ? 2 : 1));
1620 next_amount = MIN (next_amount, align);
1622 amount[next] = next_amount;
1623 mode[next] = mode_from_align[next_amount];
1629 offset_ld += next_amount;
1630 size -= next_amount;
1613 int next_amount; local
  /src/external/gpl3/gcc/dist/gcc/config/xtensa/
xtensa.cc 1532 int next_amount;
1534 next_amount = (bytes >= 4 ? 4 : (bytes >= 2 ? 2 : 1));
1535 next_amount = MIN (next_amount, align);
1537 amount[next] = next_amount;
1538 mode[next] = mode_from_align[next_amount];
1544 offset_ld += next_amount;
1545 bytes -= next_amount;
1530 int next_amount; local
  /src/external/gpl3/gcc.old/dist/gcc/config/xtensa/
xtensa.cc 1357 int next_amount;
1359 next_amount = (bytes >= 4 ? 4 : (bytes >= 2 ? 2 : 1));
1360 next_amount = MIN (next_amount, align);
1362 amount[next] = next_amount;
1363 mode[next] = mode_from_align[next_amount];
1369 offset_ld += next_amount;
1370 bytes -= next_amount;
1355 int next_amount; local

Completed in 50 milliseconds