Lines Matching defs:offset
7726 PyObject *unicode, Py_ssize_t offset, int len,
7748 substring = PyUnicode_Substring(unicode, offset, offset+len);
7958 Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes);
7964 out = PyBytes_AS_STRING(*outbytes) + offset;
7982 Py_ssize_t offset = out - PyBytes_AS_STRING(*outbytes);
7988 out = PyBytes_AS_STRING(*outbytes) + offset;
8031 Py_ssize_t offset;
8051 offset = 0;
8067 unicode, offset, chunk_len,
8071 unicode, offset,
8078 offset += chunk_len;
9735 Py_ssize_t offset;
9758 offset = end;
9760 offset = start;
9762 if (PyUnicode_READ(kind_self, data_self, offset) ==
9764 PyUnicode_READ(kind_self, data_self, offset + end_sub) ==
9769 (offset * PyUnicode_KIND(substring)),
9780 if (PyUnicode_READ(kind_self, data_self, offset + i) !=
10545 PyObject *str2, const void *buf2, Py_ssize_t len2, Py_ssize_t offset)
10550 return asciilib_find(buf1, len1, buf2, len2, offset);
10552 return ucs1lib_find(buf1, len1, buf2, len2, offset);
10554 return ucs2lib_find(buf1, len1, buf2, len2, offset);
10556 return ucs4lib_find(buf1, len1, buf2, len2, offset);