Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_DataMatrixDecodedBitStreamParser.cpp397 int32_t fullBitValue = (firstByte << 8) + secondByte - 1; in ParseTwoBytes() local
398 int32_t temp = fullBitValue / 1600; in ParseTwoBytes()
400 fullBitValue -= temp * 1600; in ParseTwoBytes()
401 temp = fullBitValue / 40; in ParseTwoBytes()
403 result[2] = fullBitValue - temp * 40; in ParseTwoBytes()