Lines Matching defs:table
89 * that a table of 2**(EXP_WINDOW_SIZE - 1) intermediate results is
102 * to precompute a table of small powers.
4379 /* k-ary values. If the exponent is large enough, table is
4380 * precomputed so that table[i] == a**(2*i+1) % c for i in
4387 PyLongObject *table[EXP_TABLE_LEN];
4579 table[0] = a;
4582 /* table[i] == a**(2*i + 1) % c */
4584 table[i] = NULL; /* must set to known value for MULT */
4585 MULT(table[i-1], a2, table[i]);
4609 MULT(z, table[pending >> 1], z); \
4649 Py_DECREF(table[i]);