Lines Matching refs:PyAPI_FUNC
41 PyAPI_FUNC(double) PyFloat_GetMax(void);
42 PyAPI_FUNC(double) PyFloat_GetMin(void);
43 PyAPI_FUNC(PyObject *) PyFloat_GetInfo(void);
48 PyAPI_FUNC(PyObject *) PyFloat_FromString(PyObject*, char** junk);
51 PyAPI_FUNC(PyObject *) PyFloat_FromDouble(double);
55 PyAPI_FUNC(double) PyFloat_AsDouble(PyObject *);
62 PyAPI_FUNC(void) PyFloat_AsReprString(char*, PyFloatObject *v);
69 PyAPI_FUNC(void) PyFloat_AsString(char*, PyFloatObject *v);
103 PyAPI_FUNC(int) _PyFloat_Pack4(double x, unsigned char *p, int le);
104 PyAPI_FUNC(int) _PyFloat_Pack8(double x, unsigned char *p, int le);
107 PyAPI_FUNC(int) _PyFloat_Digits(char *buf, double v, int *signum);
108 PyAPI_FUNC(void) _PyFloat_DigitsInit(void);
118 PyAPI_FUNC(double) _PyFloat_Unpack4(const unsigned char *p, int le);
119 PyAPI_FUNC(double) _PyFloat_Unpack8(const unsigned char *p, int le);
122 PyAPI_FUNC(int) PyFloat_ClearFreeList(void);
126 PyAPI_FUNC(PyObject *) _PyFloat_FormatAdvanced(PyObject *obj,
133 PyAPI_FUNC(PyObject *) _Py_double_round(double x, int ndigits);