Searched refs:Py_GE (Results 1 – 22 of 22) sorted by relevance
/third_party/python/Include/ |
D | object.h | 631 #define Py_GE 5 macro 655 case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
/third_party/python/Objects/ |
D | rangeobject.c | 214 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()
|
D | sliceobject.c | 587 case Py_GE: in slice_richcompare()
|
D | object.c | 670 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()
|
D | floatobject.c | 540 case Py_GE: in float_richcompare()
|
D | setobject.c | 1784 case Py_GE: in set_richcompare()
|
D | bytesobject.c | 1550 case Py_GE: in bytes_richcompare()
|
D | dictobject.c | 4334 case Py_GE: in dictview_richcompare()
|
D | typeobject.c | 6873 RICHCMP_WRAPPER(ge, Py_GE) in RICHCMP_WRAPPER()
|
D | unicodeobject.c | 11647 case Py_GE: in PyUnicode_RichCompare()
|
/third_party/python/Doc/c-api/ |
D | object.rst | 143 :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 ``<``,
|
D | unicode.rst | 1693 Possible values for *op* are :const:`Py_GT`, :const:`Py_GE`, :const:`Py_EQ`,
|
D | typeobj.rst | 1450 | :const:`Py_GE` | ``>=`` |
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 396 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/ |
D | arraymodule.c | 727 case Py_GE: cmp = result >= 0; break; in array_richcompare() 769 case Py_GE: cmp = vs >= ws; break; in array_richcompare()
|
D | _operator.c | 652 return PyObject_RichCompare(a, b, Py_GE); in _operator_ge_impl()
|
D | _collectionsmodule.c | 1471 case Py_GE: cmp = y == NULL; break; /* if w was not longer */ in deque_richcompare()
|
D | _ssl.c | 4953 case Py_GE: in PySSLSession_richcompare()
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 4451 case Py_GE: in dec_richcompare()
|
/third_party/python/Python/ |
D | ceval.c | 3601 assert(oparg <= Py_GE); in _PyEval_EvalFrameDefault()
|
D | compile.c | 2620 cmp = Py_GE; in compiler_addcompare()
|
/third_party/python/Misc/ |
D | HISTORY | 25421 Py_NE, Py_GT, Py_GE (for <, <=, ==, !=, >, >=), and returns a Python
|