Home | History | Annotate | Download | only in gdbsupport

Lines Matching refs:hex

23 /* Convert number NIB to a hex digit.  */
28 hex to *BUF. Returns BUF+1. */
32 /* Write the low byte of BYTE in hex to *BUF. Returns BUF+2. */
36 /* Read hex digits from BUFF and convert to a number, which is stored
37 in RESULT. Reads until a non-hex digit is seen. Returns a pointer
44 extern std::string hex2str (const char *hex);
48 extern std::string hex2str (const char *hex, int count);
52 resulting characters are stored in HEX, followed by a NUL
55 extern int bin2hex (const gdb_byte *bin, char *hex, int count);
57 extern int bin2hex (gdb::array_view<gdb_byte> bin, char *hex);