Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/ctypes/test/
Dtest_libc.py10 lib.my_sqrt.argtypes = c_double,
11 lib.my_sqrt.restype = c_double
12 self.assertEqual(lib.my_sqrt(4.0), 2.0)
14 self.assertEqual(lib.my_sqrt(2.0), math.sqrt(2.0))
/external/python/cpython3/Lib/ctypes/test/
Dtest_libc.py14 lib.my_sqrt.argtypes = c_double,
15 lib.my_sqrt.restype = c_double
16 self.assertEqual(lib.my_sqrt(4.0), 2.0)
18 self.assertEqual(lib.my_sqrt(2.0), math.sqrt(2.0))
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c121 EXPORT(double) my_sqrt(double a) in my_sqrt() function
/external/python/cpython3/Modules/_ctypes/
D_ctypes_test.c300 EXPORT(double) my_sqrt(double a) in my_sqrt() function