Home
last modified time | relevance | path

Searched refs:gdbstub_to_hex_digit (Results 1 – 2 of 2) sorted by relevance

/external/syslinux/gpxe/src/core/
Dgdbstub.c68 static uint8_t gdbstub_to_hex_digit ( uint8_t b ) { in gdbstub_to_hex_digit() function
107 dst [ 0 ] = gdbstub_to_hex_digit ( i >> 4 ); in gdbstub_to_hex_buf()
108 dst [ 1 ] = gdbstub_to_hex_digit ( i ); in gdbstub_to_hex_buf()
109 dst [ 2 ] = gdbstub_to_hex_digit ( i >> 12 ); in gdbstub_to_hex_buf()
110 dst [ 3 ] = gdbstub_to_hex_digit ( i >> 8 ); in gdbstub_to_hex_buf()
113 dst [ 0 ] = gdbstub_to_hex_digit ( i >> 4 ); in gdbstub_to_hex_buf()
114 dst [ 1 ] = gdbstub_to_hex_digit ( i ); in gdbstub_to_hex_buf()
115 dst [ 2 ] = gdbstub_to_hex_digit ( i >> 12 ); in gdbstub_to_hex_buf()
116 dst [ 3 ] = gdbstub_to_hex_digit ( i >> 8 ); in gdbstub_to_hex_buf()
117 dst [ 4 ] = gdbstub_to_hex_digit ( i >> 20 ); in gdbstub_to_hex_buf()
[all …]
/external/syslinux/com32/gdbstub/
Dgdbstub.c238 static uint8_t gdbstub_to_hex_digit(uint8_t b) in gdbstub_to_hex_digit() function
280 dst[0] = gdbstub_to_hex_digit(i >> 4); in gdbstub_to_hex_buf()
281 dst[1] = gdbstub_to_hex_digit(i); in gdbstub_to_hex_buf()
282 dst[2] = gdbstub_to_hex_digit(i >> 12); in gdbstub_to_hex_buf()
283 dst[3] = gdbstub_to_hex_digit(i >> 8); in gdbstub_to_hex_buf()
286 dst[0] = gdbstub_to_hex_digit(i >> 4); in gdbstub_to_hex_buf()
287 dst[1] = gdbstub_to_hex_digit(i); in gdbstub_to_hex_buf()
288 dst[2] = gdbstub_to_hex_digit(i >> 12); in gdbstub_to_hex_buf()
289 dst[3] = gdbstub_to_hex_digit(i >> 8); in gdbstub_to_hex_buf()
290 dst[4] = gdbstub_to_hex_digit(i >> 20); in gdbstub_to_hex_buf()
[all …]