Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dfx_extension_unittest.cpp54 TEST(fxcrt, FXSYS_IntToFourHexChars) { in TEST() argument
56 FXSYS_IntToFourHexChars(0x0, buf); in TEST()
58 FXSYS_IntToFourHexChars(0xA23, buf); in TEST()
60 FXSYS_IntToFourHexChars(0xB701, buf); in TEST()
62 FXSYS_IntToFourHexChars(0xFFFF, buf); in TEST()
Dfx_extension.cpp150 void FXSYS_IntToFourHexChars(uint16_t n, char* buf) { in FXSYS_IntToFourHexChars() function
158 FXSYS_IntToFourHexChars(unicode, buf); in FXSYS_ToUTF16BE()
163 FXSYS_IntToFourHexChars(0xD800 + unicode / 0x400, buf); in FXSYS_ToUTF16BE()
165 FXSYS_IntToFourHexChars(0xDC00 + unicode % 0x400, buf + 4); in FXSYS_ToUTF16BE()
Dfx_extension.h110 void FXSYS_IntToFourHexChars(uint16_t n, char* buf);
/external/pdfium/fpdfsdk/
Dfpdf_edittext.cpp140 FXSYS_IntToFourHexChars(number, ans); in AddCharcode()