/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
test_unaligned_structures.py | 15 c_ushort, c_uint, c_ulong, c_ulonglong]:
|
test_cfuncs.py | 54 self._dll.tf_H.restype = c_ushort 55 self._dll.tf_H.argtypes = (c_ushort,) 60 self._dll.tf_bH.restype = c_ushort 61 self._dll.tf_bH.argtypes = (c_byte, c_ushort)
|
test_pep3118.py | 117 (c_ushort, "<H", None, c_ushort),
|
test_byteswap.py | 41 s = c_ushort.__ctype_be__(0x1234) 46 s = c_ushort.__ctype_le__(0x1234) 163 ("d", c_ushort),
|
test_arrays.py | 6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
|
test_pointers.py | 6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
|
test_bitfields.py | 50 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
|
test_callbacks.py | 47 self.check_type(c_ushort, 42)
|
test_numbers.py | 24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
test_unaligned_structures.py | 15 c_ushort, c_uint, c_ulong, c_ulonglong]:
|
test_cfuncs.py | 54 self._dll.tf_H.restype = c_ushort 55 self._dll.tf_H.argtypes = (c_ushort,) 60 self._dll.tf_bH.restype = c_ushort 61 self._dll.tf_bH.argtypes = (c_byte, c_ushort)
|
test_pep3118.py | 117 (c_ushort, "<H", None, c_ushort),
|
test_byteswap.py | 41 s = c_ushort.__ctype_be__(0x1234) 46 s = c_ushort.__ctype_le__(0x1234) 163 ("d", c_ushort),
|
test_arrays.py | 6 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \
|
test_pointers.py | 6 ctype_types = [c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint,
|
test_bitfields.py | 50 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
|
test_callbacks.py | 47 self.check_type(c_ushort, 42)
|
test_numbers.py | 24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
wintypes.py | 9 WORD = c_ushort 31 USHORT = c_ushort
|
__init__.py | 172 class c_ushort(_SimpleCData): class in inherits:_SimpleCData 174 _check_size(c_ushort) 549 for kind in [c_ushort, c_uint, c_ulong, c_ulonglong]:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
wintypes.py | 9 WORD = c_ushort 31 USHORT = c_ushort
|
__init__.py | 172 class c_ushort(_SimpleCData): class in inherits:_SimpleCData 174 _check_size(c_ushort) 549 for kind in [c_ushort, c_uint, c_ulong, c_ulonglong]:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
sharedctypes.py | 51 'h': ctypes.c_short, 'H': ctypes.c_ushort,
|