Home
last modified time | relevance | path

Searched refs:m_logTable (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417ECModulusGF.cpp40 m_logTable.SetSize(modulus); in CBC_PDF417ECModulusGF()
47 m_logTable[m_expTable[j]] = j; in CBC_PDF417ECModulusGF()
102 return m_logTable[a]; in log()
109 return m_expTable[m_modulus - m_logTable[a] - 1]; in inverse()
115 return m_expTable[(m_logTable[a] + m_logTable[b]) % (m_modulus - 1)]; in multiply()
DBC_PDF417ECModulusGF.h33 CFX_Int32Array m_logTable; variable
/external/pdfium/xfa/src/fxbarcode/common/reedsolomon/
DBC_ReedSolomonGF256.cpp54 m_logTable[m_expTable[i]] = i; in CBC_ReedSolomonGF256()
56 m_logTable[0] = 0; in CBC_ReedSolomonGF256()
110 return m_logTable[a]; in Log()
117 return m_expTable[255 - m_logTable[a]]; in Inverse()
129 return m_expTable[(m_logTable[a] + m_logTable[b]) % 255]; in Multiply()
DBC_ReedSolomonGF256.h32 int32_t m_logTable[256]; variable