Home
last modified time | relevance | path

Searched refs:_PyFloat_Pack4 (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/
Dfloatobject.h88 PyAPI_FUNC(int) _PyFloat_Pack4(double x, unsigned char *p, int le);
/third_party/python/Modules/_ctypes/
Dcfield.c1052 if (_PyFloat_Pack4(x, (unsigned char *)ptr, 1)) in f_set_sw()
1055 if (_PyFloat_Pack4(x, (unsigned char *)ptr, 0)) in f_set_sw()
/third_party/python/Modules/
D_struct.c977 return _PyFloat_Pack4(x, (unsigned char *)p, 0); in bp_float()
1192 return _PyFloat_Pack4(x, (unsigned char *)p, 1); in lp_float()
/third_party/python/Objects/
Dfloatobject.c2184 _PyFloat_Pack4(double x, unsigned char *p, int le) in _PyFloat_Pack4() function