Searched refs:c_longdouble (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/ctypes/test/ |
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 | 89 self.check_type(c_longdouble, 3.14) 90 self.check_type(c_longdouble, -3.14)
|
D | test_functions.py | 143 f.argtypes = [c_byte, c_short, c_int, c_long, c_float, c_longdouble] 144 f.restype = c_longdouble
|
D | test_arrays.py | 9 c_long, c_ulonglong, c_float, c_double, c_longdouble
|
D | test_numbers.py | 224 for t in float_types + [c_longdouble]:
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 202 class c_longdouble(_SimpleCData): class 204 if sizeof(c_longdouble) == sizeof(c_double): 205 c_longdouble = c_double variable
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 254 | :class:`c_longdouble`| :c:type:`long double` | float | 2212 .. class:: c_longdouble
|
/external/python/cpython2/Misc/ |
D | NEWS | 4648 - Issue #9041: An issue in ctypes.c_longdouble, ctypes.c_double, and 11140 - A 'c_longdouble' type was added to the ctypes module.
|