Home
last modified time | relevance | path

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

/external/syslinux/gpxe/src/core/
Dgdbstub.c64 static uint8_t gdbstub_from_hex_digit ( char ch ) { in gdbstub_from_hex_digit() function
80 uint16_t i = gdbstub_from_hex_digit ( src [ 2 ] ) << 12 | in gdbstub_from_hex_buf()
81 gdbstub_from_hex_digit ( src [ 3 ] ) << 8 | in gdbstub_from_hex_buf()
82 gdbstub_from_hex_digit ( src [ 0 ] ) << 4 | in gdbstub_from_hex_buf()
83 gdbstub_from_hex_digit ( src [ 1 ] ); in gdbstub_from_hex_buf()
86 uint32_t i = gdbstub_from_hex_digit ( src [ 6 ] ) << 28 | in gdbstub_from_hex_buf()
87 gdbstub_from_hex_digit ( src [ 7 ] ) << 24 | in gdbstub_from_hex_buf()
88 gdbstub_from_hex_digit ( src [ 4 ] ) << 20 | in gdbstub_from_hex_buf()
89 gdbstub_from_hex_digit ( src [ 5 ] ) << 16 | in gdbstub_from_hex_buf()
90 gdbstub_from_hex_digit ( src [ 2 ] ) << 12 | in gdbstub_from_hex_buf()
[all …]
/external/syslinux/com32/gdbstub/
Dgdbstub.c228 static uint8_t gdbstub_from_hex_digit(char ch) in gdbstub_from_hex_digit() function
252 uint16_t i = gdbstub_from_hex_digit(src[2]) << 12 | in gdbstub_from_hex_buf()
253 gdbstub_from_hex_digit(src[3]) << 8 | in gdbstub_from_hex_buf()
254 gdbstub_from_hex_digit(src[0]) << 4 | in gdbstub_from_hex_buf()
255 gdbstub_from_hex_digit(src[1]); in gdbstub_from_hex_buf()
258 uint32_t i = gdbstub_from_hex_digit(src[6]) << 28 | in gdbstub_from_hex_buf()
259 gdbstub_from_hex_digit(src[7]) << 24 | in gdbstub_from_hex_buf()
260 gdbstub_from_hex_digit(src[4]) << 20 | in gdbstub_from_hex_buf()
261 gdbstub_from_hex_digit(src[5]) << 16 | in gdbstub_from_hex_buf()
262 gdbstub_from_hex_digit(src[2]) << 12 | in gdbstub_from_hex_buf()
[all …]