Home
last modified time | relevance | path

Searched refs:S8I (Results 1 – 6 of 6) 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/cpython3/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.py177 class S8I(Structure): class
186 dll.ret_8i_func.restype = S8I
187 dll.ret_8i_func.argtypes = [S8I]
188 inp = S8I(9, 8, 7, 6, 5, 4, 3, 2)
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c626 } S8I; typedef
628 EXPORT(S8I) ret_8i_func(S8I inp) in ret_8i_func()
660 EXPORT(S8I) __stdcall s_ret_8i_func(S8I inp) { return ret_8i_func(inp); } in EXPORT() argument
/external/python/cpython3/Modules/_ctypes/
D_ctypes_test.c786 } S8I; typedef
788 EXPORT(S8I) ret_8i_func(S8I inp) in ret_8i_func()
1014 EXPORT(S8I) __stdcall s_ret_8i_func(S8I inp) { return ret_8i_func(inp); } in EXPORT() argument