Searched refs:otherlen (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes.c | 4513 Py_ssize_t start, stop, step, slicelen, otherlen, i, cur; in Array_ass_subscript() local 4523 otherlen = PySequence_Length(value); in Array_ass_subscript() 4524 if (otherlen != slicelen) { in Array_ass_subscript() 4529 for (cur = start, i = 0; i < otherlen; cur += step, i++) { in Array_ass_subscript()
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 4710 Py_ssize_t start, stop, step, slicelen, otherlen, i, cur; in Array_ass_subscript() local 4720 otherlen = PySequence_Length(value); in Array_ass_subscript() 4721 if (otherlen != slicelen) { in Array_ass_subscript() 4726 for (cur = start, i = 0; i < otherlen; cur += step, i++) { in Array_ass_subscript()
|