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

  /external/chromium_org/tools/crx_id/
crx_id.py 29 def HexToInt(hex_chars):
32 for i in xrange(len(hex_chars)):
33 val += pow(256, i) * ord(hex_chars[i])
36 def HexToMPDecimal(hex_chars):
42 for i in xrange(len(hex_chars)):
43 value = ord(hex_chars[i])
50 def HexTo256(hex_chars):
55 for i in xrange(len(hex_chars)):
56 value = ord(hex_chars[i])
  /external/chromium_org/v8/src/
heap-snapshot-generator.cc 2979 static const char hex_chars[] = "0123456789ABCDEF"; local
    [all...]

Completed in 46 milliseconds