HomeSort by relevance Sort by last modified time
    Searched defs:hexDigits (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
HexNumber.h 46 const char* hexDigits = Internal::hexDigitsForMode(mode);
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
54 const char* hexDigits = Internal::hexDigitsForMode(mode);
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
63 const char* hexDigits = Internal::hexDigitsForMode(mode);
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
71 const char* hexDigits = Internal::hexDigitsForMode(mode)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSONObject.cpp 309 static const char hexDigits[] = "0123456789abcdef";
311 UChar hex[] = { '\\', 'u', hexDigits[(ch >> 12) & 0xF], hexDigits[(ch >> 8) & 0xF], hexDigits[(ch >> 4) & 0xF], hexDigits[ch & 0xF] };
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 435 private static char[] hexDigits =
454 sbuf.append(hexDigits[lo]);
455 sbuf.append(hexDigits[hi]);
    [all...]

Completed in 82 milliseconds