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

  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-math-opts.cc 1382 powi_table below. This threshold is also used to size the
1398 static const unsigned char powi_table[POWI_TABLE_SIZE] = variable
1449 return powi_lookup_cost (n - powi_table[n], cache)
1450 + powi_lookup_cost (powi_table[n], cache) + 1;
1516 op0 = powi_as_mults_1 (gsi, loc, type, n - powi_table[n], cache);
1517 op1 = powi_as_mults_1 (gsi, loc, type, powi_table[n], cache);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-math-opts.cc 1378 powi_table below. This threshold is also used to size the
1394 static const unsigned char powi_table[POWI_TABLE_SIZE] = variable
1445 return powi_lookup_cost (n - powi_table[n], cache)
1446 + powi_lookup_cost (powi_table[n], cache) + 1;
1512 op0 = powi_as_mults_1 (gsi, loc, type, n - powi_table[n], cache);
1513 op1 = powi_as_mults_1 (gsi, loc, type, powi_table[n], cache);
  /src/external/gpl3/gcc/dist/gcc/fortran/
trans-expr.cc 3304 static const unsigned char powi_table[POWI_TABLE_SIZE] = variable
3359 op0 = gfc_conv_powi (se, n - powi_table[n], tmpvar);
3360 op1 = gfc_conv_powi (se, powi_table[n], tmpvar);
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans-expr.cc 3204 static const unsigned char powi_table[POWI_TABLE_SIZE] = variable
3259 op0 = gfc_conv_powi (se, n - powi_table[n], tmpvar);
3260 op1 = gfc_conv_powi (se, powi_table[n], tmpvar);

Completed in 47 milliseconds