Home
last modified time | relevance | path

Searched refs:_PyFloat_Pack8 (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Include/
Dfloatobject.h89 PyAPI_FUNC(int) _PyFloat_Pack8(double x, unsigned char *p, int le);
/third_party/python/Modules/_ctypes/
Dcfield.c1004 if (_PyFloat_Pack8(x, (unsigned char *)ptr, 1)) in d_set_sw()
1007 if (_PyFloat_Pack8(x, (unsigned char *)ptr, 0)) in d_set_sw()
/third_party/python/Modules/
D_struct.c989 return _PyFloat_Pack8(x, (unsigned char *)p, 0); in bp_double()
1204 return _PyFloat_Pack8(x, (unsigned char *)p, 1); in lp_double()
D_pickle.c2245 if (_PyFloat_Pack8(x, (unsigned char *)&pdata[1], 0) < 0) in save_float()
/third_party/python/Python/
Dmarshal.c273 if (_PyFloat_Pack8(v, buf, 1) < 0) { in w_float_bin()
/third_party/python/Objects/
Dfloatobject.c2291 _PyFloat_Pack8(double x, unsigned char *p, int le) in _PyFloat_Pack8() function