Home
last modified time | relevance | path

Searched refs:byte2int (Results 1 – 25 of 264) sorted by relevance

1234567891011

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pyelftools/elftools/construct/lib/
H A Dhex.py1 from .py3compat import byte2int, int2byte, bytes2str
21 hextext = " ".join('%02x' % byte2int(b) for b in line)
22 rawtext = "".join(_printable[byte2int(b)] for b in line)
H A Dpy3compat.py28 def byte2int(b): function
50 byte2int = ord variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pyelftools/elftools/construct/lib/
H A Dhex.py1 from .py3compat import byte2int, int2byte, bytes2str
21 hextext = " ".join('%02x' % byte2int(b) for b in line)
22 rawtext = "".join(_printable[byte2int(b)] for b in line)
H A Dpy3compat.py28 def byte2int(b): function
50 byte2int = ord variable
/dports/devel/py-pyelftools/pyelftools-0.27/elftools/construct/lib/
H A Dhex.py1 from .py3compat import byte2int, int2byte, bytes2str
21 hextext = " ".join('%02x' % byte2int(b) for b in line)
22 rawtext = "".join(_printable[byte2int(b)] for b in line)
H A Dpy3compat.py33 def byte2int(b): function
55 byte2int = ord variable
/dports/mail/py-imapclient/IMAPClient-2.2.0/imapclient/
H A Dimap_utf7.py12 from six import binary_type, text_type, byte2int, iterbytes, unichr
59 AMPERSAND_ORD = byte2int(b"&")
60 DASH_ORD = byte2int(b"-")
/dports/databases/py-cassandra-driver/cassandra-driver-3.18.0/cassandra/
H A Dmarshal.py48 def byte2int(b): function
59 def byte2int(b): function
108 first_byte = byte2int(term[n])
119 val |= byte2int(term[n]) & 0xff
/dports/devel/py-python-engineio/python-engineio-3.14.2/engineio/
H A Dpayload.py57 if six.byte2int(encoded_payload[0:1]) <= 1:
64 while six.byte2int(encoded_payload[i:i + 1]) != 255:
65 packet_len = packet_len * 10 + six.byte2int(
H A Dpacket.py63 self.packet_type = six.byte2int(encoded_packet[0:1])
67 self.packet_type = six.byte2int(encoded_packet[0:1])
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/
H A Dintbytes.py30 def byte2int(bs): function
36 byte2int = operator.itemgetter(0) variable
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/encoding/
H A Dbytes32.py10 from ..intbytes import byte2int
21 return to_long(256, byte2int, v)[0]
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/coins/bitcoin/
H A DP2SChecker.py1 from ...intbytes import byte2int, indexbytes
18 return (len(script_public_key) == 23 and byte2int(script_public_key) == OP_HASH160 and
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/ecdsa/
H A Dintstream.py2 from pycoin.intbytes import iterbytes, byte2int
38 if signed and byte2int(bytes) & 0x80:
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pyelftools/elftools/common/
H A Dpy3compat.py28 def byte2int(b): return b function
46 byte2int = ord variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/pyelftools/elftools/common/
H A Dpy3compat.py28 def byte2int(b): return b function
46 byte2int = ord variable
/dports/devel/py-pyelftools/pyelftools-0.27/elftools/common/
H A Dpy3compat.py27 def byte2int(b): return b function
47 byte2int = ord variable
/dports/security/py-pynacl/PyNaCl-1.4.0/tests/
H A Dutils.py19 from six import byte2int, int2byte
69 int2byte(0x01 ^ byte2int(original[byte_offset:byte_offset + 1])) +
/dports/finance/py-pycoin/pycoin-0.91.20210515/pycoin/satoshi/
H A Dchecksigops.py2 from ..intbytes import byte2int, indexbytes, iterbytes
104 fb = byte2int(blob)
120 if byte2int(pair_blob) not in (2, 3) or len(pair_blob) != 33:
/dports/finance/py-pycoin/pycoin-0.91.20210515/tests/ecdsa/
H A Dlibsecp256k1_test.py9 from pycoin.intbytes import int2byte, byte2int
57 signature1 = signature[:-1] + int2byte(byte2int(signature[-1]) ^ 1)
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/PyMySQL/pymysql/
H A Dutil.pyi1 def byte2int(b): ...
/dports/devel/py-jedi/jedi-0.18.0/jedi/third_party/typeshed/third_party/2and3/pymysql/
H A Dutil.pyi1 def byte2int(b): ...
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/
H A Dcompat.py162 byte2int = operator.itemgetter(0) variable
176 def byte2int(bs): function
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/
H A Dcompat.py162 byte2int = operator.itemgetter(0) variable
176 def byte2int(bs): function
/dports/devel/py-pydevd/pydevd-1.1.1/pydevd_attach_to_process/winappdbg/
H A Dcompat.py162 byte2int = operator.itemgetter(0) variable
176 def byte2int(bs): function

1234567891011