Lines Matching refs:Py_MEMCPY
95 Py_MEMCPY(op->ob_sval, str, size); in PyString_FromStringAndSize()
149 Py_MEMCPY(op->ob_sval, str, size+1); in PyString_FromString()
177 Py_MEMCPY(count, vargs, sizeof(va_list)); in PyString_FromFormatV()
366 Py_MEMCPY(s, p, i); in PyString_FromFormatV()
652 Py_MEMCPY(p, r, rn); in PyString_DecodeEscape()
1073 Py_MEMCPY(op->ob_sval, a->ob_sval, Py_SIZE(a)); in string_concat()
1074 Py_MEMCPY(op->ob_sval + Py_SIZE(a), b->ob_sval, Py_SIZE(b)); in string_concat()
1122 Py_MEMCPY(op->ob_sval, a->ob_sval, Py_SIZE(a)); in string_repeat()
1127 Py_MEMCPY(op->ob_sval+i, op->ob_sval, j); in string_repeat()
1677 Py_MEMCPY(p, PyString_AS_STRING(item), n); in string_join()
1680 Py_MEMCPY(p, sep, seplen); in string_join()
2002 Py_MEMCPY(s, PyString_AS_STRING(self), n); in string_lower()
2035 Py_MEMCPY(s, PyString_AS_STRING(self), n); in string_upper()
2401 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave()
2407 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave()
2412 Py_MEMCPY(result_s, self_s, self_len-i); in replace_interleave()
2451 Py_MEMCPY(result_s, start, next-start); in replace_delete_single_character()
2455 Py_MEMCPY(result_s, start, end-start); in replace_delete_single_character()
2503 Py_MEMCPY(result_s, start, next-start); in replace_delete_substring()
2508 Py_MEMCPY(result_s, start, end-start); in replace_delete_substring()
2538 Py_MEMCPY(result_s, self_s, self_len); in replace_single_character_in_place()
2587 Py_MEMCPY(result_s, self_s, self_len); in replace_substring_in_place()
2591 Py_MEMCPY(start, to_s, from_len); in replace_substring_in_place()
2601 Py_MEMCPY(start+offset, to_s, from_len); in replace_substring_in_place()
2653 Py_MEMCPY(result_s, to_s, to_len); in replace_single_character()
2658 Py_MEMCPY(result_s, start, next-start); in replace_single_character()
2660 Py_MEMCPY(result_s, to_s, to_len); in replace_single_character()
2666 Py_MEMCPY(result_s, start, end-start); in replace_single_character()
2720 Py_MEMCPY(result_s, to_s, to_len); in replace_substring()
2725 Py_MEMCPY(result_s, start, next-start); in replace_substring()
2727 Py_MEMCPY(result_s, to_s, to_len); in replace_substring()
2733 Py_MEMCPY(result_s, start, end-start); in replace_substring()
3177 Py_MEMCPY(PyString_AS_STRING(u) + left, in pad()
3723 Py_MEMCPY(PyString_AS_STRING(pnew), PyString_AS_STRING(tmp), n+1); in str_subtype_new()
4660 Py_MEMCPY(res, pbuf, len); in PyString_Format()