Lines Matching +full:long +full:- +full:term
1 /* SPDX-License-Identifier: GPL-2.0-only */
10 * struct polynomial_term - one term descriptor of a polynomial
11 * @deg: degree of the term.
12 * @coef: multiplication factor of the term.
18 long coef;
19 long divider;
20 long divider_leftover;
24 * struct polynomial - a polynomial descriptor
26 * @terms: polynomial terms, last term must have degree of 0
29 long total_divider;
33 long polynomial_calc(const struct polynomial *poly, long data);