Searched refs:digit2 (Results 1 – 4 of 4) sorted by relevance
88 wchar_t digit2, in encodeASCIIDigits() argument91 CBC_HighLevelEncoder::isDigit(digit2)) { in encodeASCIIDigits()92 int32_t num = (digit1 - 48) * 10 + (digit2 - 48); in encodeASCIIDigits()
24 static wchar_t encodeASCIIDigits(wchar_t digit1, wchar_t digit2, int32_t& e);
177 uint8_t digit2 = first[i * 2 + 2]; in GetCodeRange() local179 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()185 uint8_t digit2 = (i * 2 + 2 < size) ? second[i * 2 + 2] : '0'; in GetCodeRange() local187 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()
1178 int digit1, digit2; in _PyBytes_DecodeEscape() local1180 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()