Home | History | Annotate | Download | only in Objects

Lines Matching full:sval

170     void *sval;
221 sval = PyObject_Malloc(alloc);
222 if (sval == NULL) {
226 memcpy(sval, PyByteArray_AS_STRING(self),
231 sval = PyObject_Realloc(obj->ob_bytes, alloc);
232 if (sval == NULL) {
238 obj->ob_bytes = obj->ob_start = sval;