Lines Matching refs:iobj
342 PyObject *iobj = _PyNumber_Index(args[2]); in bytearray_replace() local
343 if (iobj != NULL) { in bytearray_replace()
344 ival = PyLong_AsSsize_t(iobj); in bytearray_replace()
345 Py_DECREF(iobj); in bytearray_replace()
415 PyObject *iobj = _PyNumber_Index(args[1]); in bytearray_split() local
416 if (iobj != NULL) { in bytearray_split()
417 ival = PyLong_AsSsize_t(iobj); in bytearray_split()
418 Py_DECREF(iobj); in bytearray_split()
514 PyObject *iobj = _PyNumber_Index(args[1]); in bytearray_rsplit() local
515 if (iobj != NULL) { in bytearray_rsplit()
516 ival = PyLong_AsSsize_t(iobj); in bytearray_rsplit()
517 Py_DECREF(iobj); in bytearray_rsplit()
578 PyObject *iobj = _PyNumber_Index(args[0]); in bytearray_insert() local
579 if (iobj != NULL) { in bytearray_insert()
580 ival = PyLong_AsSsize_t(iobj); in bytearray_insert()
581 Py_DECREF(iobj); in bytearray_insert()
671 PyObject *iobj = _PyNumber_Index(args[0]); in bytearray_pop() local
672 if (iobj != NULL) { in bytearray_pop()
673 ival = PyLong_AsSsize_t(iobj); in bytearray_pop()
674 Py_DECREF(iobj); in bytearray_pop()