Home
last modified time | relevance | path

Searched refs:c_ulong (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython2/Lib/lib2to3/tests/data/
Dinfinite_recursion.py21 __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/
Dtest_pointers.py7 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))
Dtest_callbacks.py63 self.check_type(c_ulong, 42)
255 ('first', c_ulong),
256 ('second', c_ulong),
257 ('third', c_ulong),
Dtest_cfuncs.py103 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)
Dtest_pep3118.py128 (c_ulong, "<L", None, c_ulong),
Dtest_repr.py6 c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong,
Dtest_unaligned_structures.py15 c_ushort, c_uint, c_ulong, c_ulonglong]:
Dtest_numbers.py24 unsigned_types = [c_ubyte, c_ushort, c_uint, c_ulong]
Dtest_byteswap.py168 ("h", c_ulong),
Dtest_bitfields.py51 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
Dtest_structures.py55 "L": c_ulong,
/external/python/cpython2/Lib/ctypes/
D__init__.py177 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]:
Dwintypes.py6 DWORD = c_ulong
24 ULONG = c_ulong
42 WPARAM = c_ulong
/external/chromium-trace/catapult/third_party/pyserial/serial/
Dwin32.py16 return sizeof(c_ulong) != sizeof(c_void_p)
26 ULONG_PTR = c_ulong
/external/sonivox/jet_tools/JetCreator/
Deas.py108 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/
Dsharedctypes.py53 'l': ctypes.c_long, 'L': ctypes.c_ulong,
/external/autotest/client/cros/graphics/
Ddrm.py439 l.drmIoctl.argtypes = [c_int, c_ulong, c_voidp]
/external/python/cpython2/Lib/test/
Dtest_unicode.py1681 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/
Dctypes.rst243 | :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/
Dcindex.py2034 _fields_ = [("name", c_char_p), ("contents", c_char_p), ('length', c_ulong)]