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

  /src/external/gpl3/gcc/dist/gcc/
targhooks.cc 2083 /* For hooks which use the MOVE_RATIO macro, this gives the legacy default
2089 unsigned int move_ratio; local
2090 #ifdef MOVE_RATIO
2091 move_ratio = (unsigned int) MOVE_RATIO (speed_p);
2094 move_ratio = 2;
2096 move_ratio = ((speed_p) ? 15 : 3);
2099 return move_ratio;
  /src/external/gpl3/gcc.old/dist/gcc/
targhooks.cc 1928 /* For hooks which use the MOVE_RATIO macro, this gives the legacy default
1934 unsigned int move_ratio; local
1935 #ifdef MOVE_RATIO
1936 move_ratio = (unsigned int) MOVE_RATIO (speed_p);
1939 move_ratio = 2;
1941 move_ratio = ((speed_p) ? 15 : 3);
1944 return move_ratio;
  /src/external/gpl3/gcc/dist/gcc/config/xtensa/
xtensa.cc 654 moved in < "move_ratio" pieces. The worst case is when the block is
1476 int num_pieces, move_ratio;
1502 move_ratio = 4;
1504 move_ratio = LARGEST_MOVE_RATIO;
1506 if (num_pieces > move_ratio)
1474 int num_pieces, move_ratio; local
  /src/external/gpl3/gcc.old/dist/gcc/config/xtensa/
xtensa.cc 637 moved in < "move_ratio" pieces. The worst case is when the block is
1301 int num_pieces, move_ratio;
1327 move_ratio = 4;
1329 move_ratio = LARGEST_MOVE_RATIO;
1331 if (num_pieces > move_ratio)
1299 int num_pieces, move_ratio; local
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386.h 161 const int move_ratio; /* The threshold of number of scalar member in struct:processor_costs
1915 /* If a memory-to-memory move would take MOVE_RATIO or more simple
1922 #define MOVE_RATIO(speed) ((speed) ? ix86_cost->move_ratio : 3)
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386.h 156 const int move_ratio; /* The threshold of number of scalar member in struct:processor_costs
1859 /* If a memory-to-memory move would take MOVE_RATIO or more simple
1866 #define MOVE_RATIO(speed) ((speed) ? ix86_cost->move_ratio : 3)

Completed in 35 milliseconds