Lines Matching refs:myptr
2443 lstrip_helper(unsigned char *myptr, Py_ssize_t mysize, in lstrip_helper() argument
2447 while (i < mysize && memchr(argptr, myptr[i], argsize)) in lstrip_helper()
2453 rstrip_helper(unsigned char *myptr, Py_ssize_t mysize, in rstrip_helper() argument
2457 while (i >= 0 && memchr(argptr, myptr[i], argsize)) in rstrip_helper()
2471 void *myptr, *argptr; in bytearray_strip() local
2486 myptr = self->ob_bytes; in bytearray_strip()
2488 left = lstrip_helper(myptr, mysize, argptr, argsize); in bytearray_strip()
2492 right = rstrip_helper(myptr, mysize, argptr, argsize); in bytearray_strip()
2507 void *myptr, *argptr; in bytearray_lstrip() local
2522 myptr = self->ob_bytes; in bytearray_lstrip()
2524 left = lstrip_helper(myptr, mysize, argptr, argsize); in bytearray_lstrip()
2540 void *myptr, *argptr; in bytearray_rstrip() local
2555 myptr = self->ob_bytes; in bytearray_rstrip()
2558 right = rstrip_helper(myptr, mysize, argptr, argsize); in bytearray_rstrip()