Searched refs:c_ubyte (Results 1 – 20 of 20) sorted by relevance
/third_party/python/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 23 __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__.py | 221 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/ |
D | test_parameters.py | 210 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)>")
|
D | test_byteswap.py | 167 self.assertIs(c_ubyte.__ctype_le__, c_ubyte) 168 self.assertIs(c_ubyte.__ctype_be__, c_ubyte) 181 _fields_ = [("a", c_ubyte),
|
D | test_cfuncs.py | 31 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)
|
D | test_bitfields.py | 54 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong) 217 ("b", c_ubyte, 4)] 240 ("b", c_ubyte, 4)]
|
D | test_pep3118.py | 150 (c_ubyte, "<B", (), c_ubyte),
|
D | test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
D | test_values.py | 52 ("code", POINTER(c_ubyte)),
|
D | test_memfunctions.py | 42 a = (c_ubyte * 32)(*map(ord, "abcdef"))
|
D | test_pointers.py | 6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
|
D | test_arrays.py | 10 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
|
D | test_numbers.py | 24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
|
D | test_structures.py | 57 "B": c_ubyte, 493 ('data', c_ubyte * 16),
|
D | test_callbacks.py | 44 self.check_type(c_ubyte, 42)
|
/third_party/pulseaudio/src/tests/ |
D | volume-ui.py | 15 _fields_ = [("channels", c_ubyte), 83 _fields_ = [("channels", c_ubyte),
|
/third_party/python/Lib/multiprocessing/ |
D | sharedctypes.py | 27 'b': ctypes.c_byte, 'B': ctypes.c_ubyte,
|
/third_party/python/Lib/test/ |
D | pythoninfo.py | 704 BOOLEAN = ctypes.c_ubyte
|
D | test_ssl.py | 3700 ubyte = ctypes.c_ubyte * len(data)
|
/third_party/python/Doc/library/ |
D | ctypes.rst | 226 | :class:`c_ubyte` | :c:type:`unsigned char` | int | 1090 ... ("code", POINTER(c_ubyte)), 2284 .. class:: c_ubyte 2301 :class:`c_ubyte`.
|