Home
last modified time | relevance | path

Searched refs:to_start (Results 1 - 5 of 5) sorted by relevance

/third_party/python/Lib/test/test_capi/
H A Dtest_unicode.py436 for to_start in range(5):
438 unicode_copycharacters(from_, to_start, from_, to_start, 5),
439 (from_[to_start:to_start+5].rjust(5, '\0'),
440 5-to_start)
/third_party/node/deps/v8/src/objects/
H A Delements.cc198 uint32_t to_start, int raw_copy_size) { in CopyObjectToObjectElements()
206 std::min(from_base.length() - from_start, to_base.length() - to_start); in CopyObjectToObjectElements()
207 int start = to_start + copy_size; in CopyObjectToObjectElements()
214 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base.length() && in CopyObjectToObjectElements()
226 to.CopyElements(isolate, to_start, from, from_start, copy_size, in CopyObjectToObjectElements()
232 ElementsKind to_kind, uint32_t to_start, in CopyDictionaryToObjectElements()
240 int start = to_start + copy_size; in CopyDictionaryToObjectElements()
252 if (to_start + copy_size > to_length) { in CopyDictionaryToObjectElements()
253 copy_size = to_length - to_start; in CopyDictionaryToObjectElements()
261 to.set(i + to_start, valu in CopyDictionaryToObjectElements()
195 CopyObjectToObjectElements(Isolate* isolate, FixedArrayBase from_base, ElementsKind from_kind, uint32_t from_start, FixedArrayBase to_base, ElementsKind to_kind, uint32_t to_start, int raw_copy_size) CopyObjectToObjectElements() argument
230 CopyDictionaryToObjectElements(Isolate* isolate, FixedArrayBase from_base, uint32_t from_start, FixedArrayBase to_base, ElementsKind to_kind, uint32_t to_start, int raw_copy_size) CopyDictionaryToObjectElements() argument
271 CopyDoubleToObjectElements(Isolate* isolate, FixedArrayBase from_base, uint32_t from_start, FixedArrayBase to_base, uint32_t to_start, int raw_copy_size) CopyDoubleToObjectElements() argument
315 CopyDoubleToDoubleElements(FixedArrayBase from_base, uint32_t from_start, FixedArrayBase to_base, uint32_t to_start, int raw_copy_size) CopyDoubleToDoubleElements() argument
351 CopySmiToDoubleElements(FixedArrayBase from_base, uint32_t from_start, FixedArrayBase to_base, uint32_t to_start, int raw_copy_size) CopySmiToDoubleElements() argument
380 CopyPackedSmiToDoubleElements(FixedArrayBase from_base, uint32_t from_start, FixedArrayBase to_base, uint32_t to_start, int packed_size, int raw_copy_size) CopyPackedSmiToDoubleElements() argument
412 CopyObjectToDoubleElements(FixedArrayBase from_base, uint32_t from_start, FixedArrayBase to_base, uint32_t to_start, int raw_copy_size) CopyObjectToDoubleElements() argument
441 CopyDictionaryToDoubleElements(Isolate* isolate, FixedArrayBase from_base, uint32_t from_start, FixedArrayBase to_base, uint32_t to_start, int raw_copy_size) CopyDictionaryToDoubleElements() argument
975 CopyElementsImpl(Isolate* isolate, FixedArrayBase from, uint32_t from_start, FixedArrayBase to, ElementsKind from_kind, uint32_t to_start, int packed_size, int copy_size) CopyElementsImpl() argument
1469 CopyElementsImpl(Isolate* isolate, FixedArrayBase from, uint32_t from_start, FixedArrayBase to, ElementsKind from_kind, uint32_t to_start, int packed_size, int copy_size) CopyElementsImpl() argument
2508 CopyElementsImpl(Isolate* isolate, FixedArrayBase from, uint32_t from_start, FixedArrayBase to, ElementsKind from_kind, uint32_t to_start, int packed_size, int copy_size) CopyElementsImpl() argument
2925 CopyElementsImpl(Isolate* isolate, FixedArrayBase from, uint32_t from_start, FixedArrayBase to, ElementsKind from_kind, uint32_t to_start, int packed_size, int copy_size) CopyElementsImpl() argument
4886 CopyElementsImpl(Isolate* isolate, FixedArrayBase from, uint32_t from_start, FixedArrayBase to, ElementsKind from_kind, uint32_t to_start, int packed_size, int copy_size) CopyElementsImpl() argument
5078 CopyElementsImpl(Isolate* isolate, FixedArrayBase from, uint32_t from_start, FixedArrayBase to, ElementsKind from_kind, uint32_t to_start, int packed_size, int copy_size) CopyElementsImpl() argument
[all...]
/third_party/python/Include/cpython/
H A Dunicodeobject.h521 to[to_start:to_start+how_many] = from[from_start:from_start+how_many]
528 Py_ssize_t to_start,
539 Py_ssize_t to_start,
/third_party/python/Objects/
H A Dunicodeobject.c1529 _copy_characters(PyObject *to, Py_ssize_t to_start, in _copy_characters() argument
1539 assert(0 <= to_start); in _copy_characters()
1546 assert(to_start + how_many <= PyUnicode_GET_LENGTH(to)); in _copy_characters()
1582 memcpy((char*)to_data + to_kind * to_start, in _copy_characters()
1593 PyUnicode_2BYTE_DATA(to) + to_start in _copy_characters()
1603 PyUnicode_4BYTE_DATA(to) + to_start in _copy_characters()
1613 PyUnicode_4BYTE_DATA(to) + to_start in _copy_characters()
1627 PyUnicode_1BYTE_DATA(to) + to_start in _copy_characters()
1637 PyUnicode_1BYTE_DATA(to) + to_start in _copy_characters()
1647 PyUnicode_2BYTE_DATA(to) + to_start in _copy_characters()
1671 _PyUnicode_FastCopyCharacters( PyObject *to, Py_ssize_t to_start, PyObject *from, Py_ssize_t from_start, Py_ssize_t how_many) _PyUnicode_FastCopyCharacters() argument
1679 PyUnicode_CopyCharacters(PyObject *to, Py_ssize_t to_start, PyObject *from, Py_ssize_t from_start, Py_ssize_t how_many) PyUnicode_CopyCharacters() argument
[all...]
/third_party/python/Modules/
H A D_testcapimodule.c2335 Py_ssize_t from_start, to_start, how_many, copied; in unicode_copycharacters() local
2337 if (!PyArg_ParseTuple(args, "UnOnn:unicode_copycharacters", &to, &to_start, in unicode_copycharacters()
2351 if ((copied = PyUnicode_CopyCharacters(to_copy, to_start, from, in unicode_copycharacters()

Completed in 32 milliseconds