Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRDecodedBitStreamParser.cpp232 int32_t twoDigitBits = bits->ReadBits(7, e); in DecodeNumericSegment() local
234 if (twoDigitBits >= 100) { in DecodeNumericSegment()
238 BC_FX_ByteString_Append(result, 1, ALPHANUMERIC_CHARS[twoDigitBits / 10]); in DecodeNumericSegment()
239 BC_FX_ByteString_Append(result, 1, ALPHANUMERIC_CHARS[twoDigitBits % 10]); in DecodeNumericSegment()