Searched refs:FXSYS_HexCharToInt (Results 1 – 10 of 10) sorted by relevance
21 TEST(fxcrt, FXSYS_HexCharToInt) { in TEST() argument22 EXPECT_EQ(10, FXSYS_HexCharToInt('a')); in TEST()23 EXPECT_EQ(10, FXSYS_HexCharToInt('A')); in TEST()24 EXPECT_EQ(7, FXSYS_HexCharToInt('7')); in TEST()25 EXPECT_EQ(0, FXSYS_HexCharToInt('i')); in TEST()
60 inline int FXSYS_HexCharToInt(const char c) { in FXSYS_HexCharToInt() function
144 num = num * 16 + FXSYS_HexCharToInt(word[i]); in GetCode()179 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()187 FXSYS_HexCharToInt(digit1) * 16 + FXSYS_HexCharToInt(digit2); in GetCodeRange()
63 result = result * 16 + FXSYS_HexCharToInt(str.CharAt(i)); in StringToCode()102 ch = ch * 16 + FXSYS_HexCharToInt(str[i]); in StringToWideString()
102 *pDest++ = FXSYS_HexCharToInt(bstr[i + 1]) * 16 + in PDF_NameDecode()103 FXSYS_HexCharToInt(bstr[i + 2]); in PDF_NameDecode()
187 int digit = FXSYS_HexCharToInt(ch); in HexDecode()
280 int val = FXSYS_HexCharToInt(ch); in ReadHexString()
24 return (FXSYS_HexCharToInt(hexHigh) << 4) + FXSYS_HexCharToInt(hexLow); in Hex2Dec()
581 int val = FXSYS_HexCharToInt(ch); in ReadHexString()
96 return iKeyValue * 16 + FXSYS_HexCharToInt(ch); in ConvertHex()