Lines Matching defs:offset
401 Py_ssize_t count, offset;
428 offset = stringlib_find(start, end - start,
431 if (offset == -1)
433 next = start + offset;
500 Py_ssize_t self_len, offset;
508 offset = stringlib_find(self_s, self_len,
511 if (offset == -1) {
525 start = result_s + offset;
531 offset = stringlib_find(start, end - start,
534 if (offset == -1)
536 memcpy(start + offset, to_s, from_len);
537 start += offset + from_len;
617 Py_ssize_t count, offset;
650 offset = stringlib_find(start, end - start,
653 if (offset == -1)
655 next = start + offset;