Searched refs:FXSYS_IntToTwoHexChars (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_extension_unittest.cpp | 56 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()
|
D | fx_extension.cpp | 100 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()
|
D | fx_extension.h | 83 void FXSYS_IntToTwoHexChars(uint8_t c, char* buf);
|
/external/pdfium/core/fpdfapi/parser/ |
D | fpdf_parser_utility.cpp | 142 FXSYS_IntToTwoHexChars(ch, dest_buf + dest_len); in PDF_NameEncode()
|
D | fpdf_parser_decode.cpp | 522 FXSYS_IntToTwoHexChars(src[i], buf); in PDF_EncodeString()
|
/external/pdfium/fpdfsdk/ |
D | fpdfattachment.cpp | 42 FXSYS_IntToTwoHexChars(digest[i], &buf[i * 2]); in GenerateMD5Base16()
|
/external/pdfium/fxjs/ |
D | cfxjse_formcalc_context.cpp | 526 FXSYS_IntToTwoHexChars(data[i], pBuf); in GUIDString()
|