Searched refs:hexToInt (Results 1 – 1 of 1) sorted by relevance
/device/linaro/hikey/hifi/xaf/hifi-dpf/core/util/gdbstub/ |
D | gdbstub.c | 426 static int hexToInt(uint8_t **ptr, int *intValue) in hexToInt() function 581 if (hexToInt(&ptr, &addr)) in handle_exception() 588 if (hexToInt(&ptr, &addr) && *ptr++ == ',' && in handle_exception() 589 hexToInt(&ptr, &length)) { in handle_exception() 602 if (hexToInt(&ptr, &addr) && *ptr++ == ',' && in handle_exception() 603 hexToInt(&ptr, &length) && *ptr++ == ':') { in handle_exception() 614 if (hexToInt(&ptr, &addr)) { in handle_exception() 634 if (hexToInt(&ptr, &addr) && *(ptr++) == '=') { in handle_exception() 663 if (hexToInt(&ptr, &addr)) in handle_exception() 675 if (*ptr++ == ',' && hexToInt(&ptr, &addr) && in handle_exception() [all …]
|