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.cpp36 TEST(fxcrt, FXSYS_IntToTwoHexChars) { in TEST() argument
38 FXSYS_IntToTwoHexChars(0x0, buf); in TEST()
40 FXSYS_IntToTwoHexChars(0x9, buf); in TEST()
42 FXSYS_IntToTwoHexChars(0xA, buf); in TEST()
44 FXSYS_IntToTwoHexChars(0x8C, buf); in TEST()
46 FXSYS_IntToTwoHexChars(0xBE, buf); in TEST()
48 FXSYS_IntToTwoHexChars(0xD0, buf); in TEST()
50 FXSYS_IntToTwoHexChars(0xFF, buf); in TEST()
Dfx_extension.cpp144 void FXSYS_IntToTwoHexChars(uint8_t n, char* buf) { in FXSYS_IntToTwoHexChars() function
151 FXSYS_IntToTwoHexChars(n / 256, buf); in FXSYS_IntToFourHexChars()
152 FXSYS_IntToTwoHexChars(n % 256, buf + 2); in FXSYS_IntToFourHexChars()
Dfx_extension.h109 void FXSYS_IntToTwoHexChars(uint8_t n, char* buf);
/external/pdfium/core/fpdfapi/parser/
Dfpdf_parser_utility.cpp145 FXSYS_IntToTwoHexChars(ch, &dest_buf[dest_len]); in PDF_NameEncode()
Dfpdf_parser_decode.cpp566 FXSYS_IntToTwoHexChars(src[i], buf); in PDF_EncodeString()
/external/pdfium/fpdfsdk/
Dfpdf_attachment.cpp45 FXSYS_IntToTwoHexChars(digest[i], &buf[i * 2]); in GenerateMD5Base16()
/external/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp493 FXSYS_IntToTwoHexChars(data[i], &pBuf[out_index]); in GUIDString()