Home
last modified time | relevance | path

Searched refs:hexchars (Results 1 – 10 of 10) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/stubs/
H A Dsparc-stub.c406 *buf++ = hexchars[ch >> 4]; in mem2hex()
602 *ptr++ = hexchars[PC >> 4]; in handle_exception()
603 *ptr++ = hexchars[PC & 0xf]; in handle_exception()
608 *ptr++ = hexchars[FP >> 4]; in handle_exception()
609 *ptr++ = hexchars[FP & 0xf]; in handle_exception()
614 *ptr++ = hexchars[SP >> 4]; in handle_exception()
615 *ptr++ = hexchars[SP & 0xf]; in handle_exception()
620 *ptr++ = hexchars[NPC >> 4]; in handle_exception()
621 *ptr++ = hexchars[NPC & 0xf]; in handle_exception()
626 *ptr++ = hexchars[O7 >> 4]; in handle_exception()
[all …]
H A Dm32r-stub.c236 *ptr++ = hexchars[sigval >> 4]; in handle_exception()
237 *ptr++ = hexchars[sigval & 0xf]; in handle_exception()
239 *ptr++ = hexchars[PC >> 4]; in handle_exception()
240 *ptr++ = hexchars[PC & 0xf]; in handle_exception()
245 *ptr++ = hexchars[R13 >> 4]; in handle_exception()
246 *ptr++ = hexchars[R13 & 0xf]; in handle_exception()
251 *ptr++ = hexchars[R15 >> 4]; in handle_exception()
252 *ptr++ = hexchars[R15 & 0xf]; in handle_exception()
468 *ptr++ = hexchars[PC & 0xf]; in handle_exception()
1654 buf[1] = hexchars[ch >> 4]; in gdb_putchar()
[all …]
H A Di386-stub.c114 static const char hexchars[]="0123456789abcdef"; variable
550 putDebugChar (hexchars[checksum >> 4]); in putpacket()
551 putDebugChar (hexchars[checksum % 16]); in putpacket()
616 *buf++ = hexchars[ch >> 4];
617 *buf++ = hexchars[ch % 16];
765 *ptr++ = hexchars[sigval >> 4]; in handle_exception()
766 *ptr++ = hexchars[sigval & 0xf]; in handle_exception()
768 *ptr++ = hexchars[ESP]; in handle_exception()
773 *ptr++ = hexchars[EBP]; in handle_exception()
778 *ptr++ = hexchars[PC]; in handle_exception()
[all …]
H A Dm68k-stub.c141 static const char hexchars[]="0123456789abcdef"; variable
630 putDebugChar (hexchars[checksum >> 4]);
631 putDebugChar (hexchars[checksum % 16]);
660 *buf++ = hexchars[ch >> 4];
661 *buf++ = hexchars[ch % 16];
831 remcomOutBuffer[1] = hexchars[sigval >> 4]; in handle_exception()
832 remcomOutBuffer[2] = hexchars[sigval % 16]; in handle_exception()
847 remcomOutBuffer[1] = hexchars[sigval >> 4]; in handle_exception()
848 remcomOutBuffer[2] = hexchars[sigval % 16]; in handle_exception()
H A Dsh-stub.c279 static const char hexchars[] = "0123456789abcdef"; variable
285 return hexchars[(x >> 4) & 0xf]; in highhex()
290 return hexchars[x & 0xf]; in lowhex()
/dragonfly/sys/cpu/x86_64/misc/
H A Dx86_64-gdbstub.c274 putDebugChar (hexchars[checksum >> 4]); in putpacket()
323 *buf++ = hexchars[ch >> 4]; in mem2hex()
324 *buf++ = hexchars[ch % 16]; in mem2hex()
508 *ptr++ = hexchars[sigval >> 4]; in gdb_handle_exception()
509 *ptr++ = hexchars[sigval & 0xf]; in gdb_handle_exception()
511 *ptr++ = hexchars[PC >> 4]; in gdb_handle_exception()
512 *ptr++ = hexchars[PC & 0xf]; in gdb_handle_exception()
517 *ptr++ = hexchars[FP >> 4]; in gdb_handle_exception()
518 *ptr++ = hexchars[FP & 0xf]; in gdb_handle_exception()
523 *ptr++ = hexchars[SP >> 4]; in gdb_handle_exception()
[all …]
/dragonfly/usr.bin/chat/
H A Dchat.c1357 static char hexchars[] = "0123456789abcdef"; in vfmtmsg() local
1472 OUTCHAR(hexchars[c >> 4]); in vfmtmsg()
1473 OUTCHAR(hexchars[c & 0xf]); in vfmtmsg()
1498 *--str = hexchars[val % base]; in vfmtmsg()
/dragonfly/lib/libfetch/
H A Dhttp.c1125 static const char *hexchars = "0123456789abcdef"; variable
1134 Hex[i*2] = hexchars[j]; in CvtHex()
1136 Hex[i*2+1] = hexchars[j]; in CvtHex()
/dragonfly/contrib/gdb-7/gdb/
H A Dtracepoint.c3285 static const char hexchars[] = "0123456789abcdef"; variable
3296 *buf++ = hexchars[ch >> 4]; in mem2hex()
3297 *buf++ = hexchars[ch & 0xf]; in mem2hex()
H A Dremote.c2016 static const char hexchars[] = "0123456789abcdef"; variable
2095 *buf++ = hexchars[(nibble & 0x0f)]; in pack_nibble()
2102 *pkt++ = hexchars[(byte >> 4) & 0xf]; in pack_hex_byte()
2103 *pkt++ = hexchars[(byte & 0xf)]; in pack_hex_byte()