/external/python/cpython3/Lib/ctypes/test/ |
D | test_bitfields.py | 19 ("M", c_short, 1), 20 ("N", c_short, 2), 21 ("O", c_short, 3), 22 ("P", c_short, 4), 23 ("Q", c_short, 5), 24 ("R", c_short, 6), 25 ("S", c_short, 7)] 53 signed_int_types = (c_byte, c_short, c_int, c_long, c_longlong) 167 _fields_ = [("a", c_short, 1), 168 ("b", c_short, 14), [all …]
|
D | test_pep3118.py | 118 s_short = {2: 'h', 4: 'l', 8: 'q'}[sizeof(c_short)] 151 (c_short, "<" + s_short, (), c_short), 180 (POINTER(c_short) * 2, "&<" + s_short, (2,), POINTER(c_short)), 181 (POINTER(c_short) * 2 * 3, "&<" + s_short, (3,2,), POINTER(c_short)), 182 (POINTER(c_short * 2), "&(2)<" + s_short, (), POINTER(c_short)),
|
D | test_byteswap.py | 47 self.assertIs(c_short.__ctype_le__, c_short) 48 self.assertIs(c_short.__ctype_be__.__ctype_le__, c_short) 50 self.assertIs(c_short.__ctype_be__, c_short) 51 self.assertIs(c_short.__ctype_le__.__ctype_be__, c_short) 52 s = c_short.__ctype_be__(0x1234) 57 s = c_short.__ctype_le__(0x1234) 183 ("c", c_short), 251 ("h", c_short), 271 ("h", c_short), 298 ("h", c_short),
|
D | test_functions.py | 78 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 93 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 105 f.restype = c_short 119 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 131 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 143 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble] 157 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 163 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong] 205 self.assertRaises(ArgumentError, f, byref(c_short(22))) 336 _fields_ = [("x", c_short), [all …]
|
D | test_parameters.py | 83 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer 97 self.assertRaises(TypeError, LPINT.from_param, pointer(c_short(42))) 102 from ctypes import c_short, c_uint, c_int, c_long, POINTER, byref 107 self.assertRaises(TypeError, LPINT.from_param, byref(c_short(22))) 114 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref 119 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_short(22)))) 125 from ctypes import c_short, c_uint, c_int, c_long, POINTER 135 self.assertRaises(TypeError, LPINT.from_param, c_short*3)
|
D | test_arrays.py | 10 formats = c_byte, c_ubyte, c_short, c_ushort, c_int, c_uint, \ 156 _type_ = c_short 166 self.assertEqual(X._type_, c_short) 168 self.assertEqual(X()._type_, c_short)
|
D | test_cfuncs.py | 43 self._dll.tf_h.restype = c_short 44 self._dll.tf_h.argtypes = (c_short,) 49 self._dll.tf_bh.restype = c_short 50 self._dll.tf_bh.argtypes = (c_byte, c_short)
|
D | test_cast.py | 15 if 2*sizeof(c_short) == sizeof(c_int): 16 ptr = cast(array, POINTER(c_short))
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_bitfields.py | 20 ("M", c_short, 1), 21 ("N", c_short, 2), 22 ("O", c_short, 3), 23 ("P", c_short, 4), 24 ("Q", c_short, 5), 25 ("R", c_short, 6), 26 ("S", c_short, 7)] 50 signed_int_types = (c_byte, c_short, c_int, c_long, c_longlong) 164 _fields_ = [("a", c_short, 1), 165 ("b", c_short, 14), [all …]
|
D | test_byteswap.py | 27 self.assertIs(c_short.__ctype_le__, c_short) 28 self.assertIs(c_short.__ctype_be__.__ctype_le__, c_short) 30 self.assertIs(c_short.__ctype_be__, c_short) 31 self.assertIs(c_short.__ctype_le__.__ctype_be__, c_short) 32 s = c_short.__ctype_be__(0x1234) 37 s = c_short.__ctype_le__(0x1234) 163 ("c", c_short), 231 ("h", c_short), 251 ("h", c_short), 278 ("h", c_short),
|
D | test_pep3118.py | 115 s_short = {2: 'h', 4: 'l', 8: 'q'}[sizeof(c_short)] 148 (c_short, "<" + s_short, None, c_short), 177 (POINTER(c_short) * 2, "&<" + s_short, (2,), POINTER(c_short)), 178 (POINTER(c_short) * 2 * 3, "&<" + s_short, (3,2,), POINTER(c_short)), 179 (POINTER(c_short * 2), "&(2)<" + s_short, None, POINTER(c_short)),
|
D | test_functions.py | 78 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 93 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 105 f.restype = c_short 119 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 131 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 143 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble] 157 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double] 163 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong] 205 self.assertRaises(ArgumentError, f, byref(c_short(22))) 336 _fields_ = [("x", c_short), [all …]
|
D | test_parameters.py | 88 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer 102 self.assertRaises(TypeError, LPINT.from_param, pointer(c_short(42))) 107 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref 112 self.assertRaises(TypeError, LPINT.from_param, byref(c_short(22))) 119 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref 124 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_short(22)))) 130 from ctypes import c_short, c_uint, c_int, c_long, POINTER 140 self.assertRaises(TypeError, LPINT.from_param, c_short*3)
|
D | test_cfuncs.py | 43 self._dll.tf_h.restype = c_short 44 self._dll.tf_h.argtypes = (c_short,) 49 self._dll.tf_bh.restype = c_short 50 self._dll.tf_bh.argtypes = (c_byte, c_short)
|
D | test_cast.py | 15 if 2*sizeof(c_short) == sizeof(c_int): 16 ptr = cast(array, POINTER(c_short))
|
/external/python/cpython2/Lib/ctypes/ |
D | wintypes.py | 28 SHORT = c_short 104 _fields_ = [('Left', c_short), 105 ('Top', c_short), 106 ('Right', c_short), 107 ('Bottom', c_short)] 111 _fields_ = [('X', c_short), 112 ('Y', c_short)]
|
/external/rust/crates/libc/src/unix/linux_like/linux/gnu/ |
D | mod.rs | 55 pub e_termination: ::c_short, 56 pub e_exit: ::c_short, 171 pub rt_pad2: ::c_short, 176 pub rt_pad4: [::c_short; 3usize], 178 pub rt_pad4: ::c_short, 179 pub rt_metric: ::c_short, 215 pub ut_type: ::c_short, 329 pub const EMPTY: ::c_short = 0; 330 pub const RUN_LVL: ::c_short = 1; 331 pub const BOOT_TIME: ::c_short = 2; [all …]
|
/external/rust/crates/libc/src/unix/bsd/ |
D | mod.rs | 322 pub const F_RDLCK: ::c_short = 1; 323 pub const F_UNLCK: ::c_short = 2; 324 pub const F_WRLCK: ::c_short = 3; 428 pub const POLLIN: ::c_short = 0x1; 429 pub const POLLPRI: ::c_short = 0x2; 430 pub const POLLOUT: ::c_short = 0x4; 431 pub const POLLERR: ::c_short = 0x8; 432 pub const POLLHUP: ::c_short = 0x10; 433 pub const POLLNVAL: ::c_short = 0x20; 434 pub const POLLRDNORM: ::c_short = 0x040; [all …]
|
/external/rust/crates/libc/src/unix/newlib/arm/ |
D | mod.rs | 34 pub const POLLOUT: ::c_short = 0x10; 35 pub const POLLHUP: ::c_short = 0x4;
|
/external/rust/crates/libc/src/unix/newlib/aarch64/ |
D | mod.rs | 32 pub const POLLOUT: ::c_short = 0x4; 33 pub const POLLHUP: ::c_short = 0x10;
|
/external/rust/crates/libc/src/unix/solarish/ |
D | mod.rs | 355 pub l_type: ::c_short, 356 pub l_whence: ::c_short, 391 e_termination: ::c_short, 392 e_exit: ::c_short, 399 pub ut_pid: ::c_short, 400 pub ut_type: ::c_short, 418 pub ut_type: ::c_short, 423 pub ut_syslen: ::c_short, 1278 pub const POLLIN: ::c_short = 0x1; 1279 pub const POLLPRI: ::c_short = 0x2; [all …]
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/ |
D | mod.rs | 35 pub filter: ::c_short, 942 pub const EMPTY: ::c_short = 0; 943 pub const RUN_LVL: ::c_short = 1; 944 pub const BOOT_TIME: ::c_short = 2; 945 pub const OLD_TIME: ::c_short = 3; 946 pub const NEW_TIME: ::c_short = 4; 947 pub const INIT_PROCESS: ::c_short = 5; 948 pub const LOGIN_PROCESS: ::c_short = 6; 949 pub const USER_PROCESS: ::c_short = 7; 950 pub const DEAD_PROCESS: ::c_short = 8; [all …]
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/ |
D | mod.rs | 95 pub cr_ngroups: ::c_short, 114 pub ut_type: ::c_short, 353 pub const POLLINIGNEOF: ::c_short = 0x2000; 1013 pub const EMPTY: ::c_short = 0; 1014 pub const BOOT_TIME: ::c_short = 1; 1015 pub const OLD_TIME: ::c_short = 2; 1016 pub const NEW_TIME: ::c_short = 3; 1017 pub const USER_PROCESS: ::c_short = 4; 1018 pub const INIT_PROCESS: ::c_short = 5; 1019 pub const LOGIN_PROCESS: ::c_short = 6; [all …]
|
/external/crosvm/usb_util/src/ |
D | libusb_context.rs | 6 use std::os::raw::{c_short, c_void}; 258 fn add_poll_fd(&self, fd: RawFd, events: c_short); in add_poll_fd() argument 269 unsafe extern "C" fn pollfd_added_cb(fd: RawFd, events: c_short, user_data: *mut c_void) { in pollfd_added_cb() argument
|
/external/rust/crates/libc/src/unix/haiku/ |
D | mod.rs | 173 pub l_type: ::c_short, 174 pub l_whence: ::c_short, 518 pub const POLLIN: ::c_short = 0x0001; 519 pub const POLLOUT: ::c_short = 0x0002; 520 pub const POLLRDNORM: ::c_short = POLLIN; 521 pub const POLLWRNORM: ::c_short = POLLOUT; 522 pub const POLLRDBAND: ::c_short = 0x0008; 523 pub const POLLWRBAND: ::c_short = 0x0010; 524 pub const POLLPRI: ::c_short = 0x0020; 525 pub const POLLERR: ::c_short = 0x0004; [all …]
|