Searched refs:c_longdouble (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
D | test_parameters.py | 221 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]+…
|
D | test_pep3118.py | 139 if c_longdouble is c_double: 166 (c_longdouble, "<" + s_longdouble, (), c_longdouble),
|
D | test_cfuncs.py | 163 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)
|
D | test_repr.py | 7 c_float, c_double, c_longdouble, c_bool]:
|
D | test_callbacks.py | 85 self.check_type(c_longdouble, 3.14) 86 self.check_type(c_longdouble, -3.14)
|
D | test_functions.py | 133 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble] 134 f.restype = c_longdouble
|
D | test_arrays.py | 11 c_long, c_ulonglong, c_float, c_double, c_longdouble
|
D | test_numbers.py | 230 for t in float_types + [c_longdouble]:
|
/third_party/python/Misc/NEWS.d/next/Security/ |
D | 2021-01-18-09-27-31.bpo-42938.4Zn4Mp.rst | 2 :class:`ctypes.c_longdouble` values.
|
/third_party/python/Lib/ctypes/ |
D | __init__.py | 200 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/ |
D | 3.10.0a5.rst | 8 :class:`ctypes.c_longdouble` values.
|
/third_party/python/Doc/library/ |
D | ctypes.rst | 254 | :class:`c_longdouble`| :c:type:`long double` | float | 2211 .. class:: c_longdouble
|
/third_party/python/Misc/ |
D | HISTORY | 8183 - Issue #9041: An issue in ctypes.c_longdouble, ctypes.c_double, and
|