Home
last modified time | relevance | path

Searched refs:tv_i (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/ctypes/test/
Dtest_cfuncs.py185 self._dll.tv_i.restype = None
186 self._dll.tv_i.argtypes = (c_int,)
187 self.assertEqual(self._dll.tv_i(42), None)
189 self.assertEqual(self._dll.tv_i(-42), None)
/external/python/cpython2/Lib/ctypes/test/
Dtest_cfuncs.py185 self._dll.tv_i.restype = None
186 self._dll.tv_i.argtypes = (c_int,)
187 self.assertEqual(self._dll.tv_i(42), None)
189 self.assertEqual(self._dll.tv_i(-42), None)
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c519 EXPORT(void) tv_i(int c) { S; return; } in tv_i() function
/external/python/cpython3/Modules/_ctypes/
D_ctypes_test.c679 EXPORT(void) tv_i(int c) { S; return; } in tv_i() function