Searched refs:POWI_TABLE_SIZE (Results 1 - 2 of 2) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dtree-ssa-math-opts.c878 #define POWI_TABLE_SIZE 256 macro
892 static const unsigned char powi_table[POWI_TABLE_SIZE] =
930 powi(x,n) where n is less than POWI_TABLE_SIZE. This is a
954 bool cache[POWI_TABLE_SIZE];
966 memset (cache, 0, POWI_TABLE_SIZE * sizeof (bool));
971 while (val >= POWI_TABLE_SIZE)
1002 if (n < POWI_TABLE_SIZE && cache[n])
1007 if (n < POWI_TABLE_SIZE)
1039 tree cache[POWI_TABLE_SIZE], result, type = TREE_TYPE (arg0);
/haiku-buildtools/gcc/gcc/fortran/
H A Dtrans-expr.c2565 #define POWI_TABLE_SIZE 256 macro
2568 static const unsigned char powi_table[POWI_TABLE_SIZE] =
2618 if (n < POWI_TABLE_SIZE)
2641 if (n < POWI_TABLE_SIZE)
2657 tree vartmp[POWI_TABLE_SIZE];

Completed in 168 milliseconds