HomeSort by relevance Sort by last modified time
    Searched full:c_ulong (Results 1 - 25 of 34) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
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...]
  /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_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))
test_unaligned_structures.py 15 c_ushort, c_uint, c_ulong, c_ulonglong]:
test_cfuncs.py 102 self._dll.tf_L.restype = c_ulong
103 self._dll.tf_L.argtypes = (c_ulong,)
108 self._dll.tf_bL.restype = c_ulong
109 self._dll.tf_bL.argtypes = (c_char, c_ulong)
test_pep3118.py 124 (c_ulong, "<L", None, c_ulong),
test_bitfields.py 50 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
test_callbacks.py 61 self.check_type(c_ulong, 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_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))
test_unaligned_structures.py 15 c_ushort, c_uint, c_ulong, c_ulonglong]:
test_cfuncs.py 102 self._dll.tf_L.restype = c_ulong
103 self._dll.tf_L.argtypes = (c_ulong,)
108 self._dll.tf_bL.restype = c_ulong
109 self._dll.tf_bL.argtypes = (c_char, c_ulong)
test_pep3118.py 124 (c_ulong, "<L", None, c_ulong),
test_bitfields.py 50 unsigned_int_types = (c_ubyte, c_ushort, c_uint, c_ulong, c_ulonglong)
test_callbacks.py 61 self.check_type(c_ulong, 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 10 DWORD = c_ulong
28 ULONG = c_ulong
46 WPARAM = c_ulong
__init__.py 180 class c_ulong(_SimpleCData): class in inherits:_SimpleCData
182 _check_size(c_ulong)
187 c_uint = c_ulong
213 c_ulonglong = c_ulong
476 elif sizeof(c_ulong) == sizeof(c_void_p):
477 c_size_t = c_ulong
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 10 DWORD = c_ulong
28 ULONG = c_ulong
46 WPARAM = c_ulong
__init__.py 180 class c_ulong(_SimpleCData): class in inherits:_SimpleCData
182 _check_size(c_ulong)
187 c_uint = c_ulong
213 c_ulonglong = c_ulong
476 elif sizeof(c_ulong) == sizeof(c_void_p):
477 c_size_t = c_ulong
549 for kind in [c_ushort, c_uint, c_ulong, c_ulonglong]:
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
win_platform_backend.py 51 _fields_ = [('size', ctypes.c_ulong),
62 ('HandleCount', ctypes.c_ulong),
63 ('ProcessCount', ctypes.c_ulong),
64 ('ThreadCount', ctypes.c_ulong)]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive.py 222 _fields_ = [("dwSize", ctypes.c_ulong),
223 ("cntUsage", ctypes.c_ulong),
224 ("th32ProcessID", ctypes.c_ulong),
225 ("th32DefaultHeapID", ctypes.POINTER(ctypes.c_ulong)),
226 ("th32ModuleID", ctypes.c_ulong),
227 ("cntThreads", ctypes.c_ulong),
228 ("th32ParentProcessID", ctypes.c_ulong),
229 ("pcPriClassBase", ctypes.c_ulong),
230 ("dwFlags", ctypes.c_ulong),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
sharedctypes.py 53 'l': ctypes.c_long, 'L': ctypes.c_ulong,

Completed in 630 milliseconds

1 2