Searched defs:format_hex_no_prefix (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A DFormat.h170 /// format_hex_no_prefix - Output \p N as a fixed width hexadecimal. Does not
173 /// OS << format_hex_no_prefix(255, 2) => ff
174 /// OS << format_hex_no_prefix(255, 2, true) => FF
175 /// OS << format_hex_no_prefix(255, 4) => 00ff
176 /// OS << format_hex_no_prefix(255, 1) => ff
177 inline FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, function in namespace:llvm
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormat.h183 /// format_hex_no_prefix - Output \p N as a fixed width hexadecimal. Does not
186 /// OS << format_hex_no_prefix(255, 2) => ff
187 /// OS << format_hex_no_prefix(255, 2, true) => FF
188 /// OS << format_hex_no_prefix(255, 4) => 00ff
189 /// OS << format_hex_no_prefix(255, 1) => ff
190 inline FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, function in namespace:llvm

Completed in 1893 milliseconds