HomeSort by: relevance | last modified time | path
    Searched defs:tohex (Results 1 - 10 of 10) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdbsupport/
rsp-low.cc 25 tohex (int nib) function
136 *hex++ = tohex ((*bin >> 4) & 0xf);
137 *hex++ = tohex (*bin++ & 0xf);
161 ret += tohex ((*bin >> 4) & 0xf);
162 ret += tohex (*bin++ & 0xf);
  /src/external/gpl3/gdb.old/dist/gdbsupport/
rsp-low.cc 25 tohex (int nib) function
136 *hex++ = tohex ((*bin >> 4) & 0xf);
137 *hex++ = tohex (*bin++ & 0xf);
161 ret += tohex ((*bin >> 4) & 0xf);
162 ret += tohex (*bin++ & 0xf);
  /src/sbin/ifconfig/
util.c 116 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) macro
117 *p++ = (tohex((u_char)val[0]) << 4) |
118 tohex((u_char)val[1]);
119 #undef tohex macro
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
tfile.c 205 tohex (int nib) function
220 *hex++ = tohex ((*bin >> 4) & 0xf);
221 *hex++ = tohex (*bin++ & 0xf);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
tfile.c 205 tohex (int nib) function
220 *hex++ = tohex ((*bin >> 4) & 0xf);
221 *hex++ = tohex (*bin++ & 0xf);
  /src/crypto/external/bsd/openssh/dist/
namespace.h 82 #define tohex ssh_tohex macro
misc.c 1546 tohex(const void *vp, size_t l) function
1553 return xstrdup("tohex: length > 65536");
  /src/external/gpl3/binutils/dist/gas/config/
tc-z8k.c 63 tohex (int c) function
85 c = (tohex (input_line_pointer[0]) << 4)
86 | tohex (input_line_pointer[1]);
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-z8k.c 63 tohex (int c) function
85 c = (tohex (input_line_pointer[0]) << 4)
86 | tohex (input_line_pointer[1]);
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_tar.c 234 static int tohex(int c);
3692 int digit1 = tohex(s[1]);
3693 int digit2 = tohex(s[2]);
3712 tohex(int c) function

Completed in 37 milliseconds