Home
last modified time | relevance | path

Searched refs:s_buffer (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Objects/
Dcomplexobject.c838 PyObject *s_buffer = NULL, *result = NULL; in complex_subtype_from_string() local
842 s_buffer = _PyUnicode_TransformDecimalAndSpaceToASCII(v); in complex_subtype_from_string()
843 if (s_buffer == NULL) { in complex_subtype_from_string()
846 assert(PyUnicode_IS_ASCII(s_buffer)); in complex_subtype_from_string()
848 s = PyUnicode_AsUTF8AndSize(s_buffer, &len); in complex_subtype_from_string()
860 Py_DECREF(s_buffer); in complex_subtype_from_string()
Dfloatobject.c184 PyObject *s_buffer = NULL; in PyFloat_FromString() local
190 s_buffer = _PyUnicode_TransformDecimalAndSpaceToASCII(v); in PyFloat_FromString()
191 if (s_buffer == NULL) in PyFloat_FromString()
193 assert(PyUnicode_IS_ASCII(s_buffer)); in PyFloat_FromString()
195 s = PyUnicode_AsUTF8AndSize(s_buffer, &len); in PyFloat_FromString()
210 s_buffer = PyBytes_FromStringAndSize(s, len); in PyFloat_FromString()
211 if (s_buffer == NULL) { in PyFloat_FromString()
215 s = PyBytes_AS_STRING(s_buffer); in PyFloat_FromString()
226 Py_XDECREF(s_buffer); in PyFloat_FromString()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c2383 float s_buffer[TGSI_QUAD_SIZE]; in img_filter_2d_ewa() local
2447 s_buffer[buffer_next] = u / ((float) width); in img_filter_2d_ewa()
2459 args.s = s_buffer[jj]; in img_filter_2d_ewa()
2489 args.s = s_buffer[jj]; in img_filter_2d_ewa()