Searched defs:hexToInt (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJSONParser.cpp258 inline int hexToInt(CharType c) function in namespace:WebCore::__anon10420
304 c = (hexToInt(*start) << 4) +
305 hexToInt(*(start + 1));
309 c = (hexToInt(*start) << 12) +
310 (hexToInt(*(start + 1)) << 8) +
311 (hexToInt(*(start + 2)) << 4) +
312 hexToInt(*(start + 3));
/external/chromium_org/third_party/sqlite/src/src/
H A Dutil.c992 static u8 hexToInt(int h){ function
1019 zBlob[i/2] = (hexToInt(z[i])<<4) | hexToInt(z[i+1]);
H A Dtest_malloc.c272 static int hexToInt(int h){ function
287 v = hexToInt(*z++);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c21212 static u8 hexToInt(int h){ function
21239 zBlob[i/2] = (hexToInt(z[i])<<4) | hexToInt(z[i+1]);
[all...]

Completed in 471 milliseconds