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.cpp74 TEST(fxcrt, FXSYS_IntToFourHexChars) { in TEST() argument
76 FXSYS_IntToFourHexChars(0x0, buf); in TEST()
78 FXSYS_IntToFourHexChars(0xA23, buf); in TEST()
80 FXSYS_IntToFourHexChars(0xB701, buf); in TEST()
82 FXSYS_IntToFourHexChars(0xFFFF, buf); in TEST()
Dfx_extension.cpp106 void FXSYS_IntToFourHexChars(uint16_t n, char* buf) { in FXSYS_IntToFourHexChars() function
114 FXSYS_IntToFourHexChars(unicode, buf); in FXSYS_ToUTF16BE()
119 FXSYS_IntToFourHexChars(0xD800 + unicode / 0x400, buf); in FXSYS_ToUTF16BE()
121 FXSYS_IntToFourHexChars(0xDC00 + unicode % 0x400, buf + 4); in FXSYS_ToUTF16BE()
Dfx_extension.h85 void FXSYS_IntToFourHexChars(uint16_t c, char* buf);
/external/pdfium/fpdfsdk/
Dfpdfedittext.cpp109 FXSYS_IntToFourHexChars(number, ans); in AddCharcode()