Home
last modified time | relevance | path

Searched refs:FXSYS_IntToTwoHexChars (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/fxcrt/
Dfx_extension_unittest.cpp56 TEST(fxcrt, FXSYS_IntToTwoHexChars) { in TEST() argument
58 FXSYS_IntToTwoHexChars(0x0, buf); in TEST()
60 FXSYS_IntToTwoHexChars(0x9, buf); in TEST()
62 FXSYS_IntToTwoHexChars(0xA, buf); in TEST()
64 FXSYS_IntToTwoHexChars(0x8C, buf); in TEST()
66 FXSYS_IntToTwoHexChars(0xBE, buf); in TEST()
68 FXSYS_IntToTwoHexChars(0xD0, buf); in TEST()
70 FXSYS_IntToTwoHexChars(0xFF, buf); in TEST()
Dfx_extension.cpp100 void FXSYS_IntToTwoHexChars(uint8_t n, char* buf) { in FXSYS_IntToTwoHexChars() function
107 FXSYS_IntToTwoHexChars(n / 256, buf); in FXSYS_IntToFourHexChars()
108 FXSYS_IntToTwoHexChars(n % 256, buf + 2); in FXSYS_IntToFourHexChars()
Dfx_extension.h83 void FXSYS_IntToTwoHexChars(uint8_t c, char* buf);
/external/pdfium/core/fpdfapi/parser/
Dfpdf_parser_utility.cpp142 FXSYS_IntToTwoHexChars(ch, dest_buf + dest_len); in PDF_NameEncode()
Dfpdf_parser_decode.cpp522 FXSYS_IntToTwoHexChars(src[i], buf); in PDF_EncodeString()
/external/pdfium/fpdfsdk/
Dfpdfattachment.cpp42 FXSYS_IntToTwoHexChars(digest[i], &buf[i * 2]); in GenerateMD5Base16()
/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp526 FXSYS_IntToTwoHexChars(data[i], pBuf); in GUIDString()