Searched refs:S8I (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
D | test_functions.py | 346 class S8I(Structure): class 355 dll.ret_8i_func.restype = S8I 356 dll.ret_8i_func.argtypes = [S8I] 357 inp = S8I(9, 8, 7, 6, 5, 4, 3, 2) 364 class S8I(Structure): class 373 windll.s_ret_8i_func.restype = S8I 374 windll.s_ret_8i_func.argtypes = [S8I] 375 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)
|
/third_party/python/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
|