Home
last modified time | relevance | path

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

/third_party/python/Objects/
H A Dcomplexobject.c860 PyObject *s_buffer = NULL, *result = NULL; in complex_subtype_from_string() local
864 s_buffer = _PyUnicode_TransformDecimalAndSpaceToASCII(v); in complex_subtype_from_string()
865 if (s_buffer == NULL) { in complex_subtype_from_string()
868 assert(PyUnicode_IS_ASCII(s_buffer)); in complex_subtype_from_string()
870 s = PyUnicode_AsUTF8AndSize(s_buffer, &len); in complex_subtype_from_string()
882 Py_DECREF(s_buffer); in complex_subtype_from_string()
H A Dfloatobject.c203 PyObject *s_buffer = NULL; in PyFloat_FromString() local
209 s_buffer = _PyUnicode_TransformDecimalAndSpaceToASCII(v); in PyFloat_FromString()
210 if (s_buffer == NULL) in PyFloat_FromString()
212 assert(PyUnicode_IS_ASCII(s_buffer)); in PyFloat_FromString()
214 s = PyUnicode_AsUTF8AndSize(s_buffer, &len); in PyFloat_FromString()
229 s_buffer = PyBytes_FromStringAndSize(s, len); in PyFloat_FromString()
230 if (s_buffer == NULL) { in PyFloat_FromString()
234 s = PyBytes_AS_STRING(s_buffer); in PyFloat_FromString()
245 Py_XDECREF(s_buffer); in PyFloat_FromString()
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c2383 float s_buffer[TGSI_QUAD_SIZE]; in img_filter_2d_ewa() local
2401 * using the s_buffer/t_buffer and weight_buffer. Only when the buffer is in img_filter_2d_ewa()
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()

Completed in 10 milliseconds