Home
last modified time | relevance | path

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

/third_party/python/Lib/ctypes/test/
Dtest_parameters.py221 c_longdouble,
242 …self.assertRegex(repr(c_longdouble.from_param(1.5)), r"^<cparam ('d' \(1.5\)|'g' at 0x[A-Fa-f0-9]+…
264 c_longdouble,
285 …self.assertRegex(repr(c_longdouble.from_param(1.5)), r"^<cparam ('d' \(1.5\)|'g' at 0x[A-Fa-f0-9]+…
307 c_longdouble,
328 …self.assertRegex(repr(c_longdouble.from_param(1.5)), r"^<cparam ('d' \(1.5\)|'g' at 0x[A-Fa-f0-9]+…
Dtest_pep3118.py139 if c_longdouble is c_double:
166 (c_longdouble, "<" + s_longdouble, (), c_longdouble),
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.py85 self.check_type(c_longdouble, 3.14)
86 self.check_type(c_longdouble, -3.14)
Dtest_functions.py133 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble]
134 f.restype = c_longdouble
Dtest_arrays.py11 c_long, c_ulonglong, c_float, c_double, c_longdouble
Dtest_numbers.py230 for t in float_types + [c_longdouble]:
/third_party/python/Misc/NEWS.d/next/Security/
D2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst2 :class:`ctypes.c_longdouble` values.
/third_party/python/Lib/ctypes/
D__init__.py200 class c_longdouble(_SimpleCData): class
202 if sizeof(c_longdouble) == sizeof(c_double):
203 c_longdouble = c_double variable
/third_party/python/Misc/NEWS.d/
D3.10.0a5.rst8 :class:`ctypes.c_longdouble` values.
/third_party/python/Doc/library/
Dctypes.rst254 | :class:`c_longdouble`| :c:type:`long double` | float |
2211 .. class:: c_longdouble
/third_party/python/Misc/
DHISTORY8183 - Issue #9041: An issue in ctypes.c_longdouble, ctypes.c_double, and