HomeSort by relevance Sort by last modified time
    Searched refs:ord (Results 176 - 200 of 534) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/capstone/suite/
benchmark.py 44 return " ".join("0x" + "{0:x}".format(ord(c)).zfill(2) for c in s) # <-- Python 3 is OK
fuzz.py 50 return " ".join("0x" + "{0:x}".format(ord(c)).zfill(2) for c in s) # <-- Python 3 is OK
x86odd.py 89 return " ".join("0x{0:02x}".format(ord(c)) for c in s)
  /external/chromium-trace/catapult/devil/devil/utils/
reset_usb.py 29 _USBDEVFS_RESET = ord('U') << 8 | 20
  /external/fonttools/Tests/misc/
psCharStrings_test.py 53 return ' '.join('%02x' % ord(x) for x in s)
  /external/icu/icu4c/source/i18n/
regexcst.pl 287 printf(" %d /* $c */,", ord($c)); # use numeric value, so EBCDIC machines are ok.
  /external/python/cpython2/Lib/encodings/
uu_codec.py 87 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) // 3
  /external/python/cpython2/Lib/test/
test_grp.py 75 chars[i] = chr(ord(chars[i]) + 1)
test_pep247.py 58 hd2 += '%02x' % ord(byte)
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
lmdb_dataset_op_test.py 63 v = compat.as_bytes(str(chr(ord("a") + i)))
  /external/mksh/src/
sh.h 563 #define ISMAGIC(c) (ord(c) == ORD(MAGIC))
1481 #define ord macro
1493 #define ord macro
    [all...]
expr.c 563 c = ord(*++cp);
565 if (es->tokp == es->expression && (unsigned int)c == ORD('#')) {
578 c = ord(*++cp);
580 if ((unsigned int)c == ORD('[')) {
624 c = ord(*cp++);
638 for (i = 0; (n0 = ord(opname[i][0])); i++)
795 if ((wc = ord(rtt2asc(*s++))) < 0x80) {
809 if (((c = ord(rtt2asc(*s++))) & 0xC0) != 0x80)
817 if (((c = ord(rtt2asc(*s++))) & 0xC0) != 0x80)
821 if (((c = ord(rtt2asc(*s++))) & 0xC0) != 0x80
    [all...]
  /external/python/cpython3/Tools/gdb/
libpython.py 145 if 0xDC80 <= ord(char) <= 0xDCFF:
146 byte = chr(ord(char) - 0xDC00)
657 addr += ord(addr_incr)
660 lineno += ord(line_incr)
    [all...]
  /external/python/cpython3/Lib/
sre_parse.py 32 r"\a": (LITERAL, ord("\a")),
33 r"\b": (LITERAL, ord("\b")),
34 r"\f": (LITERAL, ord("\f")),
35 r"\n": (LITERAL, ord("\n")),
36 r"\r": (LITERAL, ord("\r")),
37 r"\t": (LITERAL, ord("\t")),
38 r"\v": (LITERAL, ord("\v")),
39 r"\\": (LITERAL, ord("\\"))
338 return LITERAL, ord(escape[1])
403 return LITERAL, ord(escape[1]
    [all...]
textwrap.py 67 uspace = ord(' ')
69 unicode_whitespace_trans[ord(x)] = uspace
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
textwrap.py 85 uspace = ord(u' ')
86 for x in map(ord, _whitespace):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
quoprimime.py 111 return "=%02X" % ord(c)
170 _max_append(quoted, "=%02X" % ord(c), max_encoded)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/PatchPcdValue/
PatchPcdValue.py 158 ByteList[ValueOffset + Index] = ord(ByteString)
192 ByteList[ValueOffset + Index] = ord(ByteString)
  /external/fonttools/Lib/fontTools/varLib/
plot.py 161 axes = [chr(c) for c in range(ord('A'), ord('Z')+1)]
  /external/python/cpython2/Demo/curses/
life.py 41 def __init__(self, scr, char=ord('*')):
157 board = LifeBoard(subwin, char=ord('*'))
ncurses.py 42 win.bkgdset(ord(' '), curses.color_pair(color))
44 win.bkgdset(ord(' '), curses.A_BOLD)
  /external/python/cpython2/Lib/email/
quoprimime.py 111 return "=%02X" % ord(c)
170 _max_append(quoted, "=%02X" % ord(c), max_encoded)
  /external/python/cpython2/Lib/plat-unixware7/
STROPTS.py 74 X_STR = (ord('S')<<8)
291 STR = (ord('S')<<8)
  /external/python/cpython2/Lib/
textwrap.py 85 uspace = ord(u' ')
86 for x in map(ord, _whitespace):
  /external/python/cpython3/Lib/test/
test_ucn.py 70 for char in "".join(map(chr, range(ord("a"), ord("z")))):

Completed in 831 milliseconds

1 2 3 4 5 6 78 91011>>