Home
last modified time | relevance | path

Searched refs:ecBytes (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/xfa/fxbarcode/common/reedsolomon/
DBC_ReedSolomon.cpp60 int32_t ecBytes, in Encode() argument
62 if (ecBytes == 0) { in Encode()
66 int32_t dataBytes = toEncode->GetSize() - ecBytes; in Encode()
71 CBC_ReedSolomonGF256Poly* generator = BuildGenerator(ecBytes, e); in Encode()
84 info.MultiplyByMonomial(ecBytes, 1, e)); in Encode()
93 int32_t numZeroCoefficients = ecBytes - coefficients->GetSize(); in Encode()
DBC_ReedSolomon.h21 int32_t ecBytes,
/external/pdfium/xfa/fxbarcode/qrcode/
DBC_QRCoderEncoder.cpp883 std::unique_ptr<CBC_CommonByteArray> ecBytes( in InterleaveWithECBytes() local
888 maxNumEcBytes = std::max(maxNumEcBytes, ecBytes->Size()); in InterleaveWithECBytes()
890 new CBC_QRCoderBlockPair(std::move(dataBytes), std::move(ecBytes))); in InterleaveWithECBytes()
909 const CBC_CommonByteArray* ecBytes = blocks[l]->GetErrorCorrectionBytes(); in InterleaveWithECBytes() local
910 if (y < ecBytes->Size()) { in InterleaveWithECBytes()
911 result->AppendBits(ecBytes->At(y), 8, e); in InterleaveWithECBytes()
966 CBC_CommonByteArray* ecBytes = new CBC_CommonByteArray(numEcBytesInBlock); in GenerateECBytes() local
968 ecBytes->Set(j, toEncode[numDataBytes + j]); in GenerateECBytes()
970 return ecBytes; in GenerateECBytes()