Home
last modified time | relevance | path

Searched refs:utemp (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/lite/python/interpreter_wrapper/
Dnumpy.cc133 UniquePyObjectRef utemp(PyUnicode_AsUTF8String(value)); in FillStringBufferFromPyUnicode() local
134 if (!utemp) { in FillStringBufferFromPyUnicode()
140 if (PyBytes_AsStringAndSize(utemp.get(), &buf, &len) == -1) { in FillStringBufferFromPyUnicode()
/external/tensorflow/tensorflow/python/lib/core/
Dndarray_tensor.cc224 PyObject* utemp = PyUnicode_AsUTF8String(obj); in PyObjectToString()
226 if (utemp != nullptr && PyBytes_AsStringAndSize(utemp, &buf, len) != -1) { in PyObjectToString()
228 *ptr_owner = utemp; in PyObjectToString()
231 Py_XDECREF(utemp); in PyObjectToString()