HomeSort by relevance Sort by last modified time
    Searched refs:hex_chars (Results 1 - 2 of 2) sorted by null

  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
crx_id.py 20 def HexToInt(hex_chars):
23 for i in xrange(len(hex_chars)):
24 val += pow(256, i) * ord(hex_chars[i])
27 def HexToMPDecimal(hex_chars):
33 for i in xrange(len(hex_chars)):
34 value = ord(hex_chars[i])
41 def HexTo256(hex_chars):
46 for i in xrange(len(hex_chars)):
47 value = ord(hex_chars[i])
  /external/v8/src/profiler/
heap-snapshot-generator.cc 2977 static const char hex_chars[] = "0123456789ABCDEF"; local
    [all...]

Completed in 101 milliseconds