Searched refs:m_coefficients (Results 1 – 2 of 2) sorted by relevance
40 m_coefficients = coefficients; in CBC_ReedSolomonGF256Poly()50 m_coefficients = m_field->GetZero()->GetCoefficients(); in CBC_ReedSolomonGF256Poly()52 m_coefficients.resize(coefficients.size() - firstNonZero); in CBC_ReedSolomonGF256Poly()54 m_coefficients[j] = coefficients[i]; in CBC_ReedSolomonGF256Poly()61 return m_coefficients; in GetCoefficients()65 return pdfium::CollectionSize<int32_t>(m_coefficients) - 1; in GetDegree()69 return m_coefficients.front() == 0; in IsZero()73 return m_coefficients[m_coefficients.size() - 1 - degree]; in GetCoefficients()79 m_coefficients); in Clone()89 std::vector<int32_t> smallerCoefficients = m_coefficients; in AddOrSubtract()[all …]
40 std::vector<int32_t> m_coefficients; variable