Lines Matching full:compute

30  * Call bch_encode to compute and store ecc parity bytes to a given buffer.
109 /* given its degree, compute a polynomial size in bytes */
368 * compute 2t syndromes of ecc polynomial, i.e. ecc(a^j) for j=1..2t
386 /* compute v(a^j) for j=1 .. 2t-1 */ in compute_syndromes()
441 /* compute l[i+1] = max(l[i]->c[l[p]+2*(i-p]) */ in compute_error_locator_polynomial()
523 /* compute unique solution */ in solve_linear_system()
573 * compute root r of a degree 1 polynomial over GF(2^m) (returned as log(1/r))
588 * compute roots of a degree 2 polynomial over GF(2^m)
605 * let u = sum(li.a^i) i=0..m-1; then compute r = sum(li.xi): in find_poly_deg2_roots()
619 /* reverse z=a/bX transformation and compute log(1/r) */ in find_poly_deg2_roots()
630 * compute roots of a degree 3 polynomial over GF(2^m)
663 * compute roots of a degree 4 polynomial over GF(2^m)
685 /* compute e such that e^2 = c/a */ in find_poly_deg4_roots()
740 * compute polynomial Euclidean division remainder in GF(2^m)[X]
752 /* reuse or compute log representation of denominator */ in gf_poly_mod()
776 * compute polynomial Euclidean division quotient in GF(2^m)[X]
783 /* compute a mod b (modifies a) */ in gf_poly_div()
794 * compute polynomial GCD (Greatest Common Divisor) in GF(2^m)[X]
815 * Given a polynomial f and an integer k, compute Tr(a^kX) mod f
833 /* compute f log representation only once */ in compute_trace_bk_mod()
837 /* add a^(k*2^i)(z^(2^i) mod f) and compute (z^(2^i) mod f)^2 */ in compute_trace_bk_mod()
879 /* compute g = gcd(f, tk) (destructive operation) */ in factor_polynomial()
883 /* compute h=f/gcd(f,tk); this will modify f and q */ in factor_polynomial()
950 /* compute elp(a^i) */ in chien_search()
981 * Depending on the available hw BCH support and the need to compute @calc_ecc
1022 /* if caller does not provide syndromes, compute them */ in bch_decode()
1025 /* compute received data ecc into an internal buffer */ in bch_decode()
1102 * compute generator polynomial remainder tables for fast encoding
1117 /* we want to compute (p(X).X^(8*b+deg(g))) mod g(X) */ in build_mod8_tables()
1187 * compute generator polynomial for given (m,t) parameters.