Searched refs:S8I (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ctypes/test/ |
D | test_functions.py | 356 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)
|
D | test_as_parameter.py | 173 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/ |
D | test_functions.py | 356 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)
|
D | test_as_parameter.py | 177 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.c | 626 } 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.c | 786 } 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
|