Home
last modified time | relevance | path

Searched refs:Py_GE (Results 1 – 22 of 22) sorted by relevance

/third_party/python/Include/
Dobject.h631 #define Py_GE 5 macro
655 case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
/third_party/python/Objects/
Drangeobject.c214 cmp_result = PyObject_RichCompareBool(lo, hi, Py_GE); in compute_range_length()
312 cmp_result = PyObject_RichCompareBool(i, r->length, Py_GE); in compute_range_item()
498 case Py_GE: in range_richcompare()
Dsliceobject.c587 case Py_GE: in slice_richcompare()
Dobject.c670 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
733 assert(Py_LT <= op && op <= Py_GE); in PyObject_RichCompare()
Dfloatobject.c540 case Py_GE: in float_richcompare()
Dsetobject.c1784 case Py_GE: in set_richcompare()
Dbytesobject.c1550 case Py_GE: in bytes_richcompare()
Ddictobject.c4334 case Py_GE: in dictview_richcompare()
Dtypeobject.c6873 RICHCMP_WRAPPER(ge, Py_GE) in RICHCMP_WRAPPER()
Dunicodeobject.c11647 case Py_GE: in PyUnicode_RichCompare()
/third_party/python/Doc/c-api/
Dobject.rst143 :const:`Py_NE`, :const:`Py_GT`, or :const:`Py_GE`, corresponding to ``<``,
153 :const:`Py_NE`, :const:`Py_GT`, or :const:`Py_GE`, corresponding to ``<``,
Dunicode.rst1693 Possible values for *op* are :const:`Py_GT`, :const:`Py_GE`, :const:`Py_EQ`,
Dtypeobj.rst1450 | :const:`Py_GE` | ``>=`` |
/third_party/python/Doc/extending/
Dnewtypes.rst396 where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, ``Py_GE``,
424 case Py_GE: c = size1 >= size2; break;
/third_party/python/Modules/
Darraymodule.c727 case Py_GE: cmp = result >= 0; break; in array_richcompare()
769 case Py_GE: cmp = vs >= ws; break; in array_richcompare()
D_operator.c652 return PyObject_RichCompare(a, b, Py_GE); in _operator_ge_impl()
D_collectionsmodule.c1471 case Py_GE: cmp = y == NULL; break; /* if w was not longer */ in deque_richcompare()
D_ssl.c4953 case Py_GE: in PySSLSession_richcompare()
/third_party/python/Modules/_decimal/
D_decimal.c4451 case Py_GE: in dec_richcompare()
/third_party/python/Python/
Dceval.c3601 assert(oparg <= Py_GE); in _PyEval_EvalFrameDefault()
Dcompile.c2620 cmp = Py_GE; in compiler_addcompare()
/third_party/python/Misc/
DHISTORY25421 Py_NE, Py_GT, Py_GE (for <, <=, ==, !=, >, >=), and returns a Python