Searched refs:c_ushort (Results 1 – 18 of 18) sorted by relevance
/external/autotest/client/cros/graphics/ |
D | drm.py | 162 ("hdisplay", c_ushort), 163 ("hsync_start", c_ushort), 164 ("hsync_end", c_ushort), 165 ("htotal", c_ushort), 166 ("hskew", c_ushort), 167 ("vdisplay", c_ushort), 168 ("vsync_start", c_ushort), 169 ("vsync_end", c_ushort), 170 ("vtotal", c_ushort), 171 ("vscan", c_ushort),
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_cfuncs.py | 55 self._dll.tf_H.restype = c_ushort 56 self._dll.tf_H.argtypes = (c_ushort,) 61 self._dll.tf_bH.restype = c_ushort 62 self._dll.tf_bH.argtypes = (c_byte, c_ushort)
|
D | test_pep3118.py | 121 (c_ushort, "<H", None, c_ushort),
|
D | test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
D | test_byteswap.py | 42 s = c_ushort.__ctype_be__(0x1234) 47 s = c_ushort.__ctype_le__(0x1234) 164 ("d", c_ushort),
|
D | test_unaligned_structures.py | 15 c_ushort, c_uint, c_ulong, c_ulonglong]:
|
D | test_arrays.py | 8 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
|
D | test_pointers.py | 6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
|
D | test_callbacks.py | 49 self.check_type(c_ushort, 42)
|
D | test_numbers.py | 24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
|
D | test_bitfields.py | 51 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
|
D | test_structures.py | 51 "H": c_ushort,
|
/external/python/cpython2/Lib/ctypes/ |
D | wintypes.py | 5 WORD = c_ushort 27 USHORT = c_ushort
|
D | __init__.py | 169 class c_ushort(_SimpleCData): class 171 _check_size(c_ushort) 546 for kind in [c_ushort, c_uint, c_ulong, c_ulonglong]:
|
/external/sonivox/jet_tools/JetCreator/ |
D | eas.py | 158 _fields_ = [('bank', c_ushort), 185 _fields_ = [('wFormatTag', c_ushort), 186 ('nChannels', c_ushort), 189 ('nBlockAlign', c_ushort), 190 ('wBitsPerSample', c_ushort)]
|
/external/python/cpython2/Lib/multiprocessing/ |
D | sharedctypes.py | 51 'h': ctypes.c_short, 'H': ctypes.c_ushort,
|
/external/python/cpython2/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 25 __uint16_t = c_ushort 79 u_int16_t = c_ushort 2375 u_short = c_ushort 2378 ushort = c_ushort 2482 uint16_t = c_ushort
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 235 | :class:`c_ushort` | :c:type:`unsigned short` | int/long | 273 >>> c_ushort(-3) 274 c_ushort(65533) 2310 :class:`c_ushort`. 2337 .. class:: c_ushort
|