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

  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-math-opts.cc 1384 #define POWI_TABLE_SIZE 256
1398 static const unsigned char powi_table[POWI_TABLE_SIZE] =
1436 powi(x,n) where n is less than POWI_TABLE_SIZE. This is a
1460 bool cache[POWI_TABLE_SIZE];
1472 memset (cache, 0, POWI_TABLE_SIZE * sizeof (bool));
1477 while (val >= POWI_TABLE_SIZE)
1508 if (n < POWI_TABLE_SIZE && cache[n])
1513 if (n < POWI_TABLE_SIZE)
1545 tree cache[POWI_TABLE_SIZE], result, type = TREE_TYPE (arg0);
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-math-opts.cc 1380 #define POWI_TABLE_SIZE 256
1394 static const unsigned char powi_table[POWI_TABLE_SIZE] =
1432 powi(x,n) where n is less than POWI_TABLE_SIZE. This is a
1456 bool cache[POWI_TABLE_SIZE];
1468 memset (cache, 0, POWI_TABLE_SIZE * sizeof (bool));
1473 while (val >= POWI_TABLE_SIZE)
1504 if (n < POWI_TABLE_SIZE && cache[n])
1509 if (n < POWI_TABLE_SIZE)
1541 tree cache[POWI_TABLE_SIZE], result, type = TREE_TYPE (arg0);
  /src/external/gpl3/gcc/dist/gcc/fortran/
trans-expr.cc 3301 #define POWI_TABLE_SIZE 256
3304 static const unsigned char powi_table[POWI_TABLE_SIZE] =
3354 if (n < POWI_TABLE_SIZE)
3377 if (n < POWI_TABLE_SIZE)
3393 tree vartmp[POWI_TABLE_SIZE];
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans-expr.cc 3201 #define POWI_TABLE_SIZE 256
3204 static const unsigned char powi_table[POWI_TABLE_SIZE] =
3254 if (n < POWI_TABLE_SIZE)
3277 if (n < POWI_TABLE_SIZE)
3293 tree vartmp[POWI_TABLE_SIZE];

Completed in 45 milliseconds