Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcrt/
Dfx_extension_unittest.cpp9 TEST(fxcrt, FXSYS_toHexDigit) { in TEST() argument
10 EXPECT_EQ(10, FXSYS_toHexDigit('a')); in TEST()
11 EXPECT_EQ(10, FXSYS_toHexDigit('A')); in TEST()
12 EXPECT_EQ(7, FXSYS_toHexDigit('7')); in TEST()
13 EXPECT_EQ(0, FXSYS_toHexDigit('i')); in TEST()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_utility.cpp294 FXSYS_toHexDigit(pSrc[i + 1]) * 16 + FXSYS_toHexDigit(pSrc[i + 2]); in PDF_NameDecode()
Dfpdf_parser_decode.cpp146 int digit = FXSYS_toHexDigit(ch); in HexDecode()
Dfpdf_parser_parser.cpp1997 int val = FXSYS_toHexDigit(ch); in ReadHexString()
/external/pdfium/core/include/fxcrt/
Dfx_ext.h49 inline int FXSYS_toHexDigit(const FX_CHAR c) { in FXSYS_toHexDigit() function
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font_cid.cpp707 num = num * 16 + FXSYS_toHexDigit(word.GetAt(i)); in CMap_GetCode()
736 range.m_Lower[i] = FXSYS_toHexDigit(digit1) * 16 + FXSYS_toHexDigit(digit2); in CMap_GetCodeRange()
747 range.m_Upper[i] = FXSYS_toHexDigit(digit1) * 16 + FXSYS_toHexDigit(digit2); in CMap_GetCodeRange()
Dfpdf_font.cpp501 result = result * 16 + FXSYS_toHexDigit(buf[i]); in StringToCode()
542 ch = ch * 16 + FXSYS_toHexDigit(buf[i]); in StringToWideString()
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_parser_old.cpp871 int val = FXSYS_toHexDigit(ch); in ReadHexString()