Home
last modified time | relevance | path

Searched refs:sq_repeat (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Objects/
Dabstract.c1114 if (mv && mv->sq_repeat) { in PyNumber_Multiply()
1115 return sequence_repeat(mv->sq_repeat, v, w); in PyNumber_Multiply()
1117 else if (mw && mw->sq_repeat) { in PyNumber_Multiply()
1118 return sequence_repeat(mw->sq_repeat, w, v); in PyNumber_Multiply()
1297 f = mv->sq_repeat; in PyNumber_InPlaceMultiply()
1305 if (mw->sq_repeat) in PyNumber_InPlaceMultiply()
1306 return sequence_repeat(mw->sq_repeat, w, v); in PyNumber_InPlaceMultiply()
1794 if (m && m->sq_repeat) { in PySequence_Repeat()
1795 PyObject *res = m->sq_repeat(o, count); in PySequence_Repeat()
1859 if (m && m->sq_repeat) { in PySequence_InPlaceRepeat()
[all …]
Dtypeslots.inc47 {offsetof(PySequenceMethods, sq_repeat), offsetof(PyTypeObject, tp_as_sequence)},
Dtypeobject.c5837 COPYSEQ(sq_repeat); in inherit_slots()
8071 SQSLOT("__mul__", sq_repeat, NULL, wrap_indexargfunc,
8073 SQSLOT("__rmul__", sq_repeat, NULL, wrap_indexargfunc,
/third_party/python/Include/cpython/
Dobject.h154 ssizeargfunc sq_repeat; member
/third_party/python/Doc/c-api/
Dtypeobj.rst305 …| :c:member:`~PySequenceMethods.sq_repeat` | :c:type:`ssizeargfunc` | __…
2253 .. c:member:: ssizeargfunc PySequenceMethods.sq_repeat
/third_party/python/Misc/
DHISTORY22656 - The sq_repeat, sq_inplace_repeat, sq_concat and sq_inplace_concat