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

  /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/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
  /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:
  /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];
android_modem.c 92 const char* hexdigits = "0123456789abcdef"; local
112 p[2] = hexdigits[ (c) >> 4 ];
113 p[3] = hexdigits[ (c) & 15 ];
    [all...]
  /external/chromium/testing/
generate_gmock_mutant.py 347 it = string.hexdigits[1:n + 1]
  /external/chromium_org/testing/
generate_gmock_mutant.py 348 it = string.hexdigits[1:n + 1]
  /external/qemu/android/utils/
stralloc.c 280 const char hexdigits[16] = "0123456789abcdef"; local
288 s->s[s->n+nn] = hexdigits[value & 15];
  /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/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/protobuf/src/google/protobuf/stubs/
strutil.cc 659 static const char *hexdigits = "0123456789abcdef"; local
663 *p-- = hexdigits[i & 15]; // mod by 16
670 static const char *hexdigits = "0123456789abcdef"; local
673 buffer[i] = hexdigits[uint32(value) & 0xf];
    [all...]
  /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
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
string.py 15 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 404 private final char hexdigits [] = new char [] { field in class:MediaPlaybackService
438 q.append(hexdigits[digit]);
458 q.append(hexdigits[digit]);
    [all...]

Completed in 1824 milliseconds