OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntToStringHex
(Results
1 - 2
of
2
) sorted by null
/external/flatbuffers/src/
idl_gen_text.cpp
127
text +=
IntToStringHex
(static_cast<uint8_t>(c), 2);
147
text +=
IntToStringHex
(ucc, 4);
154
text +=
IntToStringHex
(high_surrogate, 4);
156
text +=
IntToStringHex
(low_surrogate, 4);
/external/flatbuffers/include/flatbuffers/
util.h
86
// For example,
IntToStringHex
(0x23, 8) returns the string "00000023".
87
inline std::string
IntToStringHex
(int i, int xdigits) {
Completed in 79 milliseconds