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

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/md5test/
md5driver.py 10 + string.hexdigits[(o >> 4) & 0xF]
11 + string.hexdigits[o & 0xF])
  /external/python/cpython2/Demo/md5test/
md5driver.py 10 + string.hexdigits[(o >> 4) & 0xF]
11 + string.hexdigits[o & 0xF])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
codecs.c 669 static Py_UNICODE hexdigits[] = { variable
719 *outp++ = hexdigits[(c>>28)&0xf];
720 *outp++ = hexdigits[(c>>24)&0xf];
721 *outp++ = hexdigits[(c>>20)&0xf];
722 *outp++ = hexdigits[(c>>16)&0xf];
723 *outp++ = hexdigits[(c>>12)&0xf];
724 *outp++ = hexdigits[(c>>8)&0xf];
730 *outp++ = hexdigits[(c>>12)&0xf];
731 *outp++ = hexdigits[(c>>8)&0xf];
735 *outp++ = hexdigits[(c>>4)&0xf];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
codecs.c 656 static Py_UNICODE hexdigits[] = { variable
702 *outp++ = hexdigits[(c>>28)&0xf];
703 *outp++ = hexdigits[(c>>24)&0xf];
704 *outp++ = hexdigits[(c>>20)&0xf];
705 *outp++ = hexdigits[(c>>16)&0xf];
706 *outp++ = hexdigits[(c>>12)&0xf];
707 *outp++ = hexdigits[(c>>8)&0xf];
713 *outp++ = hexdigits[(c>>12)&0xf];
714 *outp++ = hexdigits[(c>>8)&0xf];
718 *outp++ = hexdigits[(c>>4)&0xf];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_md5.py 12 h = string.hexdigits
  /external/python/cpython2/Lib/test/
test_md5.py 12 h = string.hexdigits
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_md5.py 12 h = string.hexdigits
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_md5.py 12 h = string.hexdigits
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_md5.py 12 h = string.hexdigits
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_md5.py 12 h = string.hexdigits
  /external/fonttools/Lib/fontTools/misc/
textTools.py 29 h = string.hexdigits
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
quoprimime.py 48 from string import hexdigits
303 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
  /external/python/cpython2/Lib/email/
quoprimime.py 48 from string import hexdigits
303 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
quoprimime.py 48 from string import hexdigits
303 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
quoprimime.py 48 from string import hexdigits
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/email/
quoprimime.py 48 from string import hexdigits
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
303 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
  /external/python/cpython2/Python/
codecs.c 825 static Py_UNICODE hexdigits[] = { variable
875 *outp++ = hexdigits[(c>>28)&0xf];
876 *outp++ = hexdigits[(c>>24)&0xf];
877 *outp++ = hexdigits[(c>>20)&0xf];
878 *outp++ = hexdigits[(c>>16)&0xf];
879 *outp++ = hexdigits[(c>>12)&0xf];
880 *outp++ = hexdigits[(c>>8)&0xf];
886 *outp++ = hexdigits[(c>>12)&0xf];
887 *outp++ = hexdigits[(c>>8)&0xf];
891 *outp++ = hexdigits[(c>>4)&0xf]
    [all...]
  /external/python/cpython3/Tools/gdb/
libpython.py 98 hexdigits = "0123456789abcdef" variable
    [all...]
  /external/python/cpython3/Lib/email/
quoprimime.py 44 from string import ascii_letters, digits, hexdigits
262 elif i+2 < n and line[i+1] in hexdigits and line[i+2] in hexdigits:
  /external/python/cpython3/Lib/test/
test_secrets.py 111 self.assertTrue(all(c in string.hexdigits for c in s))
  /external/tensorflow/tensorflow/core/lib/strings/
strcat.cc 42 static const char hexdigits[] = "0123456789abcdef"; local
44 *--writer = hexdigits[value & 0xF];
numbers.cc 371 static const char* hexdigits = "0123456789abcdef"; local
375 buf[i] = hexdigits[v & 0xf];
  /frameworks/base/media/java/android/media/
MediaCodec.java     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stringold.py 17 hexdigits -- a string containing all characters considered hexadecimal digits
31 hexdigits = digits + 'abcdef' + 'ABCDEF' variable

Completed in 1626 milliseconds

1 2 3