Searched refs:numECWords (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/fxbarcode/datamatrix/ |
D | BC_ErrorCorrection.cpp | 168 int32_t numECWords, in createECCBlock() argument 170 return createECCBlock(codewords, 0, codewords.GetLength(), numECWords, e); in createECCBlock() 175 int32_t numECWords, in createECCBlock() argument 179 while (table < kFactorTableNum && FACTOR_SETS[table] != numECWords) in createECCBlock() 186 uint16_t* ecc = FX_Alloc(uint16_t, numECWords); in createECCBlock() 187 memset(ecc, 0, numECWords * sizeof(uint16_t)); in createECCBlock() 189 uint16_t m = ecc[numECWords - 1] ^ codewords[l]; in createECCBlock() 190 for (int32_t k = numECWords - 1; k > 0; k--) { in createECCBlock() 205 for (int32_t j = 0; j < numECWords; j++) { in createECCBlock() 206 strecc += (wchar_t)ecc[numECWords - j - 1]; in createECCBlock()
|
D | BC_ErrorCorrection.h | 32 int32_t numECWords, 37 int32_t numECWords,
|