Lines Matching refs:polynomial
3 * Generic polynomial calculation using integer coefficients.
15 #include <linux/polynomial.h>
44 * static const struct polynomial poly_temp_to_N = {
55 * static const struct polynomial poly_N_to_temp = {
68 * polynomial_calc - calculate a polynomial using integer arithmetic
70 * @poly: pointer to the descriptor of the polynomial
73 * Calculate the result of a polynomial using only integer arithmetic. For
77 * Returns the result of the polynomial calculation.
79 long polynomial_calc(const struct polynomial *poly, long data)
87 * Here is the polynomial calculation function, which performs the
107 MODULE_DESCRIPTION("Generic polynomial calculations");