Searched refs:FXSYS_IntToTwoHexChars (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_extension_unittest.cpp | 36 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()
|
D | fx_extension.cpp | 144 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()
|
D | fx_extension.h | 109 void FXSYS_IntToTwoHexChars(uint8_t n, char* buf);
|
/external/pdfium/core/fpdfapi/parser/ |
D | fpdf_parser_utility.cpp | 145 FXSYS_IntToTwoHexChars(ch, &dest_buf[dest_len]); in PDF_NameEncode()
|
D | fpdf_parser_decode.cpp | 566 FXSYS_IntToTwoHexChars(src[i], buf); in PDF_EncodeString()
|
/external/pdfium/fpdfsdk/ |
D | fpdf_attachment.cpp | 45 FXSYS_IntToTwoHexChars(digest[i], &buf[i * 2]); in GenerateMD5Base16()
|
/external/pdfium/fxjs/xfa/ |
D | cfxjse_formcalc_context.cpp | 493 FXSYS_IntToTwoHexChars(data[i], &pBuf[out_index]); in GUIDString()
|