Home
last modified time | relevance | path

Searched refs:nb_lshift (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Objects/
Dtypeslots.inc29 offsetof(PyHeapTypeObject, as_number.nb_lshift),
Dfloatobject.c1563 long_methods->nb_lshift(numerator, py_exponent)); in float_as_integer_ratio_impl()
1569 long_methods->nb_lshift(denominator, py_exponent)); in float_as_integer_ratio_impl()
Dabstract.c1010 BINARY_FUNC(PyNumber_Lshift, nb_lshift, "<<")
1149 INPLACE_BINOP(PyNumber_InPlaceLshift, nb_inplace_lshift, nb_lshift, "<<=")
Dtypeobject.c5216 COPYNUM(nb_lshift); in inherit_slots()
6589 SLOT1BIN(slot_nb_lshift, nb_lshift, "__lshift__", "__rlshift__")
7215 BINSLOT("__lshift__", nb_lshift, slot_nb_lshift, "<<"),
7216 RBINSLOT("__rlshift__", nb_lshift, slot_nb_lshift, "<<"),
/external/python/cpython3/Include/cpython/
Dobject.h127 binaryfunc nb_lshift; member
/external/python/cpython2/Include/
Dobject.h240 binaryfunc nb_lshift; member
/external/python/cpython2/Objects/
Dabstract.c1176 BINARY_FUNC(PyNumber_Lshift, nb_lshift, "<<")
1315 INPLACE_BINOP(PyNumber_InPlaceLshift, nb_inplace_lshift, nb_lshift, "<<=")
Dtypeobject.c3969 COPYNUM(nb_lshift);
5376 SLOT1BIN(slot_nb_lshift, nb_lshift, "__lshift__", "__rlshift__")
6124 BINSLOT("__lshift__", nb_lshift, slot_nb_lshift, "<<"),
6125 RBINSLOT("__rlshift__", nb_lshift, slot_nb_lshift, "<<"),
Dfloatobject.c1763 long_methods->nb_lshift(denominator, py_exponent)); in float_as_integer_ratio()
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst242 …| :c:member:`~PyNumberMethods.nb_lshift` | :c:type:`binaryfunc` | __…
1990 binaryfunc nb_lshift;
2047 .. c:member:: binaryfunc PyNumberMethods.nb_lshift
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst487 :attr:`nb_power`, :attr:`nb_lshift`, :attr:`nb_rshift`, :attr:`nb_and`,
1166 binaryfunc nb_lshift;