Home
last modified time | relevance | path

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

/external/pdfium/fxbarcode/datamatrix/
DBC_ASCIIEncoder.cpp88 wchar_t digit2, in encodeASCIIDigits() argument
91 CBC_HighLevelEncoder::isDigit(digit2)) { in encodeASCIIDigits()
92 int32_t num = (digit1 - 48) * 10 + (digit2 - 48); in encodeASCIIDigits()
DBC_ASCIIEncoder.h24 static wchar_t encodeASCIIDigits(wchar_t digit1, wchar_t digit2, int32_t& e);
/external/pdfium/core/fpdfapi/font/
Dcpdf_cmapparser.cpp177 uint8_t digit2 = first[i * 2 + 2]; in GetCodeRange() local
179 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()
185 uint8_t digit2 = (i * 2 + 2 < size) ? second[i * 2 + 2] : '0'; in GetCodeRange() local
187 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()
/external/python/cpython3/Objects/
Dbytesobject.c1178 int digit1, digit2; in _PyBytes_DecodeEscape() local
1180 digit2 = _PyLong_DigitValue[Py_CHARMASK(s[1])]; in _PyBytes_DecodeEscape()
1181 if (digit1 < 16 && digit2 < 16) { in _PyBytes_DecodeEscape()
1182 *p++ = (unsigned char)((digit1 << 4) + digit2); in _PyBytes_DecodeEscape()