HomeSort by relevance Sort by last modified time
    Searched full:hexdigits (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
HexNumber.h 46 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
54 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
63 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
71 const LChar* hexDigits = Internal::hexDigitsForMode(mode)
    [all...]
  /external/dropbear/libtommath/tombc/
grammar.txt 32 hexdigits := hexdigits hexdigit | hexdigit
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_md5.py 12 h = string.hexdigits
test_string.py 75 string.hexdigits
test_hashlib.py 28 h = string.hexdigits
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_md5.py 12 h = string.hexdigits
test_string.py 75 string.hexdigits
test_hashlib.py 28 h = string.hexdigits
  /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/qemu/android/utils/
stralloc.c 280 const char hexdigits[16] = "0123456789abcdef"; local
288 s->s[s->n+nn] = hexdigits[value & 15];
  /frameworks/base/media/java/android/media/
MediaCodec.java 431 String hexdigits = "0123456789abcdef"; local
433 builder.append(hexdigits.charAt((key[i] & 0xf0) >> 4));
434 builder.append(hexdigits.charAt(key[i] & 0x0f));
438 builder.append(hexdigits.charAt((iv[i] & 0xf0) >> 4));
439 builder.append(hexdigits.charAt(iv[i] & 0x0f));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 48 from string import hexdigits namespace
303 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 48 from string import hexdigits namespace
303 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 17 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
sre_parse.py 26 HEXDIGITS = set("0123456789abcdefABCDEF")
238 while source.next in HEXDIGITS and len(escape) < 4:
270 while source.next in HEXDIGITS and len(escape) < 4:
string.py 15 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 17 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
sre_parse.py 26 HEXDIGITS = set("0123456789abcdefABCDEF")
238 while source.next in HEXDIGITS and len(escape) < 4:
270 while source.next in HEXDIGITS and len(escape) < 4:
string.py 15 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
  /external/llvm/lib/Support/
APFloat.cpp 524 significant nibble. Write out exactly COUNT hexdigits, return
    [all...]
  /external/qemu/telephony/
gsm.c 163 static const char hexdigits[] = "0123456789abcdef"; local
165 hex[0] = hexdigits[(val >> 4) & 15];
166 hex[1] = hexdigits[val & 15];
  /external/smali/smali/src/main/jflex/
smaliLexer.flex 180 HexDigits = [0-9a-fA-F]{4}
304 "\\u" {HexDigits} { sb.append((char)Integer.parseInt(yytext().substring(2,6), 16)); }
341 "\\u" {HexDigits} { sb.append((char)Integer.parseInt(yytext().substring(2,6), 16)); }
  /external/chromium_org/third_party/sqlite/src/src/
func.c 825 static const char hexdigits[] = { variable
859 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];
860 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];
923 *(z++) = hexdigits[(c>>4)&0xf];
924 *(z++) = hexdigits[c&0xf];
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
strutil.cc 697 static const char *hexdigits = "0123456789abcdef"; local
701 *p-- = hexdigits[i & 15]; // mod by 16
708 static const char *hexdigits = "0123456789abcdef"; local
715 buffer[i] = hexdigits[value & 0xf];
717 buffer[i] = hexdigits[uint32(value) & 0xf];
    [all...]
  /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 3013 milliseconds

1 2