HomeSort by relevance Sort by last modified time
    Searched refs:GetDegree (Results 1 - 3 of 3) sorted by null

  /external/pdfium/xfa/src/fxbarcode/common/reedsolomon/
BC_ReedSolomonDecoder.cpp 88 if (a->GetDegree() < b->GetDegree()) {
111 while (r->GetDegree() >= R / 2) {
129 int32_t denominatorLeadingTerm = rLast->GetCoefficients(rLast->GetDegree());
132 while (r->GetDegree() >= rLast->GetDegree() && !(r->IsZero())) {
133 int32_t degreeDiff = r->GetDegree() - rLast->GetDegree();
135 m_field->Multiply(r->GetCoefficients(r->GetDegree()), dltInverse);
189 int32_t numErrors = errorLocator->GetDegree();
    [all...]
BC_ReedSolomonGF256Poly.h 17 int32_t GetDegree();
BC_ReedSolomonGF256Poly.cpp 67 int32_t CBC_ReedSolomonGF256Poly::GetDegree() {
225 int32_t denominatorLeadingTerm = other->GetCoefficients(other->GetDegree());
229 while (remainder->GetDegree() >= other->GetDegree() && !remainder->IsZero()) {
230 int32_t degreeDifference = remainder->GetDegree() - other->GetDegree();
232 m_field->Multiply(remainder->GetCoefficients((remainder->GetDegree())),

Completed in 319 milliseconds