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

  /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/fonttools/Lib/fontTools/misc/
textTools.py 29 h = string.hexdigits
xmlWriter.py 180 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_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/lldb/examples/python/
gdbremote.py 261 return str[0] in string.hexdigits and str[1] in string.hexdigits;
347 if self.str and len(self.str) >= 2 and self.str[0] in string.hexdigits and self.str[1] in string.hexdigits:
404 while n < str_len and self.str[n] in string.hexdigits:
411 if self.str[i] not in string.hexdigits:
    [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...]
  /frameworks/base/media/java/android/media/
MediaCodec.java     [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
  /external/libpng/contrib/libtests/
tarith.c 282 static const char hexdigits[16] = "0123456789ABCDEF"; variable
348 co->number[c.cnumber++] = hexdigits[(ch >> 4) & 0xf];
349 co->number[c.cnumber++] = hexdigits[ch & 0xf];
  /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 1288 milliseconds