Searched refs:FXSYS_IntToFourHexChars (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_extension_unittest.cpp | 74 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()
|
D | fx_extension.cpp | 106 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()
|
D | fx_extension.h | 85 void FXSYS_IntToFourHexChars(uint16_t c, char* buf);
|
/external/pdfium/fpdfsdk/ |
D | fpdfedittext.cpp | 109 FXSYS_IntToFourHexChars(number, ans); in AddCharcode()
|