Searched refs:c_double (Results 1 - 25 of 46) sorted by relevance

12

/external/python/cpython2/Lib/test/
H A Dtest_ascii_formatd.py11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double namespace
23 c_double(10.0))
50 c_double(val))
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_callbacks.py85 self.check_type(c_double, 3.14)
86 self.check_type(c_double, -3.14)
120 # POINTER(c_double), for example, is not supported.
122 prototype = self.functype.im_func(POINTER(c_double))
170 CALLBACK = CFUNCTYPE(c_double, c_double)
174 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
175 integrate.restype = c_double
235 CALLBACK = CFUNCTYPE(c_double, c_doubl
[all...]
H A Dtest_libc.py10 lib.my_sqrt.argtypes = c_double,
11 lib.my_sqrt.restype = c_double
H A Dtest_byteswap.py128 self.assertIs(c_double.__ctype_le__, c_double)
129 self.assertIs(c_double.__ctype_be__.__ctype_le__, c_double)
131 self.assertIs(c_double.__ctype_be__, c_double)
132 self.assertIs(c_double.__ctype_le__.__ctype_be__, c_double)
133 s = c_double(math.pi)
136 s = c_double
[all...]
H A Dtest_pep3118.py135 (c_double, "<d", None, c_double),
136 # c_longdouble may be an alias to c_double
148 (c_double * 4, "<d", (4,), c_double),
H A Dtest_repr.py7 c_float, c_double, c_longdouble, c_bool]:
H A Dtest_unaligned_structures.py14 c_float, c_double,
H A Dtest_pickling.py8 _fields_ = [("a", c_int), ("b", c_double)]
27 c_double(3.14),
H A Dtest_functions.py70 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
78 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
93 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
119 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
131 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
132 f.restype = c_double
157 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
163 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
H A Dtest_random_things.py61 cb = CFUNCTYPE(c_int, c_double)(callback_func)
H A Dtest_cfuncs.py151 self._dll.tf_d.restype = c_double
152 self._dll.tf_d.argtypes = (c_double,)
157 self._dll.tf_bd.restype = c_double
158 self._dll.tf_bd.argtypes = (c_byte, c_double)
/external/python/cpython3/Lib/ctypes/test/
H A Dtest_callbacks.py79 self.check_type(c_double, 3.14)
80 self.check_type(c_double, -3.14)
114 # POINTER(c_double), for example, is not supported.
116 prototype = self.functype.__func__(POINTER(c_double))
164 CALLBACK = CFUNCTYPE(c_double, c_double)
168 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
169 integrate.restype = c_double
229 CALLBACK = CFUNCTYPE(c_double, c_doubl
[all...]
H A Dtest_byteswap.py148 self.assertIs(c_double.__ctype_le__, c_double)
149 self.assertIs(c_double.__ctype_be__.__ctype_le__, c_double)
151 self.assertIs(c_double.__ctype_be__, c_double)
152 self.assertIs(c_double.__ctype_le__.__ctype_be__, c_double)
153 s = c_double(math.pi)
156 s = c_double
[all...]
H A Dtest_libc.py14 lib.my_sqrt.argtypes = c_double,
15 lib.my_sqrt.restype = c_double
H A Dtest_pep3118.py138 (c_double, "<d", (), c_double),
139 # c_longdouble may be an alias to c_double
151 (c_double * 4, "<d", (4,), c_double),
H A Dtest_repr.py7 c_float, c_double, c_longdouble, c_bool]:
H A Dtest_unaligned_structures.py14 c_float, c_double,
H A Dtest_pickling.py8 _fields_ = [("a", c_int), ("b", c_double)]
27 c_double(3.14),
H A Dtest_functions.py70 f.argtypes = [c_byte, c_wchar, c_int, c_long, c_float, c_double]
78 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
93 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
119 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
131 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
132 f.restype = c_double
157 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double]
163 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_double, c_longlong]
H A Dtest_random_things.py61 cb = CFUNCTYPE(c_int, c_double)(callback_func)
/external/capstone/bindings/python/capstone/
H A Darm.py26 ('fp', ctypes.c_double),
H A Darm64.py25 ('fp', ctypes.c_double),
H A Dx86.py21 ('fp', ctypes.c_double),
/external/python/cpython2/Lib/ctypes/
H A D__init__.py198 class c_double(_SimpleCData): class in inherits:_SimpleCData
200 _check_size(c_double)
204 if sizeof(c_longdouble) == sizeof(c_double):
205 c_longdouble = c_double
/external/python/cpython3/Lib/ctypes/
H A D__init__.py193 class c_double(_SimpleCData): class in inherits:_SimpleCData
195 _check_size(c_double)
199 if sizeof(c_longdouble) == sizeof(c_double):
200 c_longdouble = c_double

Completed in 906 milliseconds

12