Home
last modified time | relevance | path

Searched refs:c_ubyte (Results 1 – 20 of 20) sorted by relevance

/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py23 __uint8_t = c_ubyte
78 u_int8_t = c_ubyte
106 ('p', POINTER(c_ubyte)),
113 ('max', POINTER(c_ubyte)),
114 ('q', POINTER(c_ubyte)),
115 ('pp', POINTER(POINTER(c_ubyte))),
128 ('data', POINTER(c_ubyte)),
139 ('data', POINTER(c_ubyte)),
148 ('enc', POINTER(c_ubyte)),
484 DES_cblock = c_ubyte * 8
[all …]
/third_party/python/Lib/ctypes/
D__init__.py221 class c_ubyte(_SimpleCData): class
223 c_ubyte.__ctype_le__ = c_ubyte.__ctype_be__ = c_ubyte
226 _check_size(c_ubyte)
552 c_uint8 = c_ubyte
/third_party/python/Lib/ctypes/test/
Dtest_parameters.py210 c_ubyte,
230 self.assertEqual(repr(c_ubyte.from_param(98)), "<cparam 'B' (98)>")
253 c_ubyte,
273 self.assertEqual(repr(c_ubyte.from_param(98)), "<cparam 'B' (98)>")
296 c_ubyte,
316 self.assertEqual(repr(c_ubyte.from_param(98)), "<cparam 'B' (98)>")
Dtest_byteswap.py167 self.assertIs(c_ubyte.__ctype_le__, c_ubyte)
168 self.assertIs(c_ubyte.__ctype_be__, c_ubyte)
181 _fields_ = [("a", c_ubyte),
Dtest_cfuncs.py31 self._dll.tf_B.restype = c_ubyte
32 self._dll.tf_B.argtypes = (c_ubyte,)
37 self._dll.tf_bB.restype = c_ubyte
38 self._dll.tf_bB.argtypes = (c_byte, c_ubyte)
Dtest_bitfields.py54 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
217 ("b", c_ubyte, 4)]
240 ("b", c_ubyte, 4)]
Dtest_pep3118.py150 (c_ubyte, "<B", (), c_ubyte),
Dtest_repr.py6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
Dtest_values.py52 ("code", POINTER(c_ubyte)),
Dtest_memfunctions.py42 a = (c_ubyte * 32)(*map(ord, "abcdef"))
Dtest_pointers.py6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
Dtest_arrays.py10 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
Dtest_numbers.py24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
Dtest_structures.py57 "B": c_ubyte,
493 ('data', c_ubyte * 16),
Dtest_callbacks.py44 self.check_type(c_ubyte, 42)
/third_party/pulseaudio/src/tests/
Dvolume-ui.py15 _fields_ = [("channels", c_ubyte),
83 _fields_ = [("channels", c_ubyte),
/third_party/python/Lib/multiprocessing/
Dsharedctypes.py27 'b': ctypes.c_byte, 'B': ctypes.c_ubyte,
/third_party/python/Lib/test/
Dpythoninfo.py704 BOOLEAN = ctypes.c_ubyte
Dtest_ssl.py3700 ubyte = ctypes.c_ubyte * len(data)
/third_party/python/Doc/library/
Dctypes.rst226 | :class:`c_ubyte` | :c:type:`unsigned char` | int |
1090 ... ("code", POINTER(c_ubyte)),
2284 .. class:: c_ubyte
2301 :class:`c_ubyte`.