Home | History | Annotate | Download | only in datamatrix

Lines Matching refs:ecc

130     CFX_WideString ecc =
134 sb += ecc;
155 CFX_WideString ecc = createECCBlock(temp, errorSizes[block], e);
161 sb.SetAt(symbolInfo->m_dataCapacity + l, ecc.GetAt(pos++));
186 uint16_t* ecc = FX_Alloc(uint16_t, numECWords);
187 FXSYS_memset(ecc, 0, numECWords * sizeof(uint16_t));
189 uint16_t m = ecc[numECWords - 1] ^ codewords.GetAt(l);
192 ecc[k] = (uint16_t)(ecc[k - 1] ^
195 ecc[k] = ecc[k - 1];
199 ecc[0] = (uint16_t)ALOG[(LOG[m] + LOG[FACTORS[table][0]]) % 255];
201 ecc[0] = 0;
206 strecc += (FX_WCHAR)ecc[numECWords - j - 1];
208 FX_Free(ecc);