perf report: Add debug help for the finding of symbol bugs - show the symtab origin...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / util / string.c
blobc93eca9a7be39f67c5c3638d5d6ddc13770457dd
1 #include "string.h"
3 static int hex(char ch)
5 if ((ch >= '0') && (ch <= '9'))
6 return ch - '0';
7 if ((ch >= 'a') && (ch <= 'f'))
8 return ch - 'a' + 10;
9 if ((ch >= 'A') && (ch <= 'F'))
10 return ch - 'A' + 10;
11 return -1;
15 * While we find nice hex chars, build a long_val.
16 * Return number of chars processed.
18 int hex2u64(const char *ptr, u64 *long_val)
20 const char *p = ptr;
21 *long_val = 0;
23 while (*p) {
24 const int hex_val = hex(*p);
26 if (hex_val < 0)
27 break;
29 *long_val = (*long_val << 4) | hex_val;
30 p++;
33 return p - ptr;