Home
last modified time | relevance | path

Searched refs:Py_LE (Results 1 – 25 of 25) sorted by relevance

/external/python/cpython3/Objects/
Drangeobject.c452 cmp2 = PyObject_RichCompareBool(r->start, ob, Py_LE); in range_contains_long()
456 cmp2 = PyObject_RichCompareBool(ob, r->start, Py_LE); in range_contains_long()
552 case Py_LE: in range_richcompare()
Dsliceobject.c609 case Py_LE: in slice_richcompare()
Dfloatobject.c563 case Py_LE: in float_richcompare()
Dsetobject.c2094 case Py_LE: in set_richcompare()
Dobject.c957 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Dbytesobject.c1548 case Py_LE: in bytes_richcompare()
Ddictobject.c5940 case Py_LE:
Dtypeobject.c8871 RICHCMP_WRAPPER(le, Py_LE) in RICHCMP_WRAPPER()
Dunicodeobject.c11019 case Py_LE: in PyUnicode_RichCompare()
/external/pytorch/torch/csrc/
DDevice.cpp141 case Py_LE: in THPDevice_rc()
/external/python/cpython3/Include/
Dobject.h1133 #define Py_LE 1 macro
1160 case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
/external/ml_dtypes/ml_dtypes/_src/
Dintn_numpy.h352 case Py_LE: in PyIntN_RichCompare()
Dcustom_float.h301 case Py_LE: in PyCustomFloat_RichCompare()
/external/python/cpython3/Doc/extending/
Dnewtypes.rst371 where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, ``Py_GE``,
395 case Py_LE: c = size1 <= size2; break;
/external/python/cpython3/Modules/
Darraymodule.c756 case Py_LE: cmp = result <= 0; break; in array_richcompare()
797 case Py_LE: cmp = vs <= ws; break; in array_richcompare()
D_operator.c631 return PyObject_RichCompare(a, b, Py_LE); in _operator_le_impl()
D_collectionsmodule.c1695 case Py_LE: cmp = x == NULL; break; /* if v was not longer */ in deque_richcompare()
D_ssl.c5494 case Py_LE: in PySSLSession_richcompare()
/external/python/cpython3/Doc/c-api/
Dobject.rst287 which must be one of :c:macro:`Py_LT`, :c:macro:`Py_LE`, :c:macro:`Py_EQ`,
Dunicode.rst1484 :c:macro:`Py_NE`, :c:macro:`Py_LT`, and :c:macro:`Py_LE`.
Dtypeobj.rst1547 | .. c:macro:: Py_LE | ``<=`` |
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16.cc342 case Py_LE: in PyCustomFloat_RichCompare()
/external/python/cpython3/Python/
Dcompile.c2866 [Py_LE] = COMPARISON_LESS_THAN | COMPARISON_EQUALS,
2888 cmp = Py_LE; in compiler_addcompare()
/external/python/cpython3/Modules/_decimal/
D_decimal.c4688 case Py_LE: in dec_richcompare()
/external/python/cpython3/Misc/
DHISTORY25420 an integer indicating the opcode, which can be Py_LT, Py_LE, Py_EQ,