HomeSort by relevance Sort by last modified time
    Searched defs:hexDigits (Results 1 - 6 of 6) 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/guava/guava/src/com/google/common/hash/
HashCode.java 114 sb.append(hexDigits[(b >> 4) & 0xf]).append(hexDigits[b & 0xf]);
119 private static final char[] hexDigits = "0123456789abcdef".toCharArray();
  /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...]
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 

Completed in 598 milliseconds