OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:gdbstub_to_hex_digit
(Results
1 - 2
of
2
) sorted by null
/external/syslinux/gpxe/src/core/
gdbstub.c
68
static uint8_t
gdbstub_to_hex_digit
( uint8_t b ) {
function
107
dst [ 0 ] =
gdbstub_to_hex_digit
( i >> 4 );
108
dst [ 1 ] =
gdbstub_to_hex_digit
( i );
109
dst [ 2 ] =
gdbstub_to_hex_digit
( i >> 12 );
110
dst [ 3 ] =
gdbstub_to_hex_digit
( i >> 8 );
113
dst [ 0 ] =
gdbstub_to_hex_digit
( i >> 4 );
114
dst [ 1 ] =
gdbstub_to_hex_digit
( i );
115
dst [ 2 ] =
gdbstub_to_hex_digit
( i >> 12 );
116
dst [ 3 ] =
gdbstub_to_hex_digit
( i >> 8 );
117
dst [ 4 ] =
gdbstub_to_hex_digit
( i >> 20 )
[
all
...]
/external/syslinux/com32/gdbstub/
gdbstub.c
238
static uint8_t
gdbstub_to_hex_digit
(uint8_t b)
function
280
dst[0] =
gdbstub_to_hex_digit
(i >> 4);
281
dst[1] =
gdbstub_to_hex_digit
(i);
282
dst[2] =
gdbstub_to_hex_digit
(i >> 12);
283
dst[3] =
gdbstub_to_hex_digit
(i >> 8);
286
dst[0] =
gdbstub_to_hex_digit
(i >> 4);
287
dst[1] =
gdbstub_to_hex_digit
(i);
288
dst[2] =
gdbstub_to_hex_digit
(i >> 12);
289
dst[3] =
gdbstub_to_hex_digit
(i >> 8);
290
dst[4] =
gdbstub_to_hex_digit
(i >> 20)
[
all
...]
Completed in 395 milliseconds