Searched refs:c_ulong (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython2/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 21 __darwin_wctype_t = c_ulong 44 __darwin_size_t = c_ulong 49 __darwin_clock_t = c_ulong 97 ('rd_key', c_ulong * 60), 161 ('mask', c_ulong), 162 ('flags', c_ulong), 315 ('num_read', c_ulong), 316 ('num_write', c_ulong), 352 ('d', POINTER(c_ulong)), 373 ('thread_id', c_ulong), [all …]
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_pointers.py | 7 c_long, c_ulong, c_longlong, c_ulonglong, c_double, c_float] 15 class A(POINTER(c_ulong)): 18 POINTER(c_ulong)(c_ulong(22)) 20 self.assertRaises(TypeError, A, c_ulong(33))
|
D | test_callbacks.py | 63 self.check_type(c_ulong, 42) 255 ('first', c_ulong), 256 ('second', c_ulong), 257 ('third', c_ulong),
|
D | test_cfuncs.py | 103 self._dll.tf_L.restype = c_ulong 104 self._dll.tf_L.argtypes = (c_ulong,) 109 self._dll.tf_bL.restype = c_ulong 110 self._dll.tf_bL.argtypes = (c_char, c_ulong)
|
D | test_pep3118.py | 128 (c_ulong, "<L", None, c_ulong),
|
D | test_repr.py | 6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
|
D | test_unaligned_structures.py | 15 c_ushort, c_uint, c_ulong, c_ulonglong]:
|
D | test_numbers.py | 24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
|
D | test_byteswap.py | 168 ("h", c_ulong),
|
D | test_bitfields.py | 51 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
|
D | test_structures.py | 55 "L": c_ulong,
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 177 class c_ulong(_SimpleCData): class 179 _check_size(c_ulong) 184 c_uint = c_ulong 210 c_ulonglong = c_ulong 473 elif sizeof(c_ulong) == sizeof(c_void_p): 474 c_size_t = c_ulong 546 for kind in [c_ushort, c_uint, c_ulong, c_ulonglong]:
|
D | wintypes.py | 6 DWORD = c_ulong 24 ULONG = c_ulong 42 WPARAM = c_ulong
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | win32.py | 16 return sizeof(c_ulong) != sizeof(c_void_p) 26 ULONG_PTR = c_ulong
|
/external/sonivox/jet_tools/JetCreator/ |
D | eas.py | 108 EAS_METADATA_CBFUNC = CFUNCTYPE(c_int, c_int, c_char_p, c_ulong) 187 ('nSamplesPerSec', c_ulong), 188 ('nAvgBytesPerSec', c_ulong), 537 _fields_ = [('libVersion', c_ulong), 544 ('buildTimeStamp', c_ulong),
|
/external/python/cpython2/Lib/multiprocessing/ |
D | sharedctypes.py | 53 'l': ctypes.c_long, 'L': ctypes.c_ulong,
|
/external/autotest/client/cros/graphics/ |
D | drm.py | 439 l.drmIoctl.argtypes = [c_int, c_ulong, c_voidp]
|
/external/python/cpython2/Lib/test/ |
D | test_unicode.py | 1681 c_uint, c_ulong, c_ulonglong, c_size_t, c_void_p) 1764 b'%lu', c_ulong(123)) 1775 max_ulong = 2 ** (8 * sizeof(c_ulong)) - 1 1777 b'%lu', c_ulong(max_ulong))
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 243 | :class:`c_ulong` | :c:type:`unsigned long` | int/long | 2298 where ``sizeof(int) == sizeof(long)`` it is an alias for :class:`c_ulong`. 2325 .. class:: c_ulong
|
/external/clang/bindings/python/clang/ |
D | cindex.py | 2034 _fields_ = [("name", c_char_p), ("contents", c_char_p), ('length', c_ulong)]
|