Searched defs:FXSYS_IntToTwoHexChars (Results 1 - 1 of 1) sorted by relevance

/external/pdfium/core/fxcrt/
H A Dfx_extension.cpp100 void FXSYS_IntToTwoHexChars(uint8_t n, char* buf) { function
107 FXSYS_IntToTwoHexChars(n / 256, buf);
108 FXSYS_IntToTwoHexChars(n % 256, buf + 2);

Completed in 2282 milliseconds