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

  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-math-opts.cc 1388 (1<<POWI_WINDOW_SIZE) in the corresponding "m-ary method". */
1389 #define POWI_WINDOW_SIZE 3
1481 digit = val & ((1 << POWI_WINDOW_SIZE) - 1);
1483 + POWI_WINDOW_SIZE + 1;
1484 val >>= POWI_WINDOW_SIZE;
1521 digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-math-opts.cc 1384 (1<<POWI_WINDOW_SIZE) in the corresponding "m-ary method". */
1385 #define POWI_WINDOW_SIZE 3
1477 digit = val & ((1 << POWI_WINDOW_SIZE) - 1);
1479 + POWI_WINDOW_SIZE + 1;
1480 val >>= POWI_WINDOW_SIZE;
1517 digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
  /src/external/gpl3/gcc/dist/gcc/fortran/
trans-expr.cc 3342 #define POWI_WINDOW_SIZE 3
3364 digit = n & ((1 << POWI_WINDOW_SIZE) - 1);
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans-expr.cc 3242 #define POWI_WINDOW_SIZE 3
3264 digit = n & ((1 << POWI_WINDOW_SIZE) - 1);

Completed in 50 milliseconds