Home
last modified time | relevance | path

Searched refs:S8I (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
Dtest_functions.py356 class S8I(Structure): class
365 dll.ret_8i_func.restype = S8I
366 dll.ret_8i_func.argtypes = [S8I]
367 inp = S8I(9, 8, 7, 6, 5, 4, 3, 2)
374 class S8I(Structure): class
383 windll.s_ret_8i_func.restype = S8I
384 windll.s_ret_8i_func.argtypes = [S8I]
385 inp = S8I(9, 8, 7, 6, 5, 4, 3, 2)
Dtest_as_parameter.py173 class S8I(Structure): class
182 dll.ret_8i_func.restype = S8I
183 dll.ret_8i_func.argtypes = [S8I]
184 inp = S8I(9, 8, 7, 6, 5, 4, 3, 2)
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c613 } S8I; typedef
615 EXPORT(S8I) ret_8i_func(S8I inp) in ret_8i_func()
647 EXPORT(S8I) __stdcall s_ret_8i_func(S8I inp) { return ret_8i_func(inp); } in EXPORT() argument