Home
last modified time | relevance | path

Searched refs:c_longdouble (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
Dtest_cfuncs.py163 self._dll.tf_D.restype = c_longdouble
164 self._dll.tf_D.argtypes = (c_longdouble,)
169 self._dll.tf_bD.restype = c_longdouble
170 self._dll.tf_bD.argtypes = (c_byte, c_longdouble)
Dtest_repr.py7 c_float, c_double, c_longdouble, c_bool]:
Dtest_callbacks.py89 self.check_type(c_longdouble, 3.14)
90 self.check_type(c_longdouble, -3.14)
Dtest_functions.py143 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble]
144 f.restype = c_longdouble
Dtest_arrays.py9 c_long, c_ulonglong, c_float, c_double, c_longdouble
Dtest_numbers.py224 for t in float_types + [c_longdouble]:
/external/python/cpython2/Lib/ctypes/
D__init__.py202 class c_longdouble(_SimpleCData): class
204 if sizeof(c_longdouble) == sizeof(c_double):
205 c_longdouble = c_double variable
/external/python/cpython2/Doc/library/
Dctypes.rst254 | :class:`c_longdouble`| :c:type:`long double` | float |
2212 .. class:: c_longdouble
/external/python/cpython2/Misc/
DNEWS4648 - Issue #9041: An issue in ctypes.c_longdouble, ctypes.c_double, and
11140 - A 'c_longdouble' type was added to the ctypes module.