Home
last modified time | relevance | path

Searched refs:c_ushort (Results 1 – 18 of 18) sorted by relevance

/external/autotest/client/cros/graphics/
Ddrm.py162 ("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/
Dtest_cfuncs.py55 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)
Dtest_pep3118.py121 (c_ushort, "<H", None, c_ushort),
Dtest_repr.py6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
Dtest_byteswap.py42 s = c_ushort.__ctype_be__(0x1234)
47 s = c_ushort.__ctype_le__(0x1234)
164 ("d", c_ushort),
Dtest_unaligned_structures.py15 c_ushort, c_uint, c_ulong, c_ulonglong]:
Dtest_arrays.py8 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
Dtest_pointers.py6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
Dtest_callbacks.py49 self.check_type(c_ushort, 42)
Dtest_numbers.py24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
Dtest_bitfields.py51 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
Dtest_structures.py51 "H": c_ushort,
/external/python/cpython2/Lib/ctypes/
Dwintypes.py5 WORD = c_ushort
27 USHORT = c_ushort
D__init__.py169 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/
Deas.py158 _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/
Dsharedctypes.py51 'h': ctypes.c_short, 'H': ctypes.c_ushort,
/external/python/cpython2/Lib/lib2to3/tests/data/
Dinfinite_recursion.py25 __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/
Dctypes.rst235 | :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