Searched refs:Py_GE (Results 1 - 18 of 18) sorted by relevance
/third_party/python/Include/ |
H A D | object.h | 672 #define Py_GE 5 macro 696 case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
/third_party/python/Objects/ |
H A D | rangeobject.c | 212 cmp_result = PyObject_RichCompareBool(lo, hi, Py_GE); in compute_range_length() 310 cmp_result = PyObject_RichCompareBool(i, r->length, Py_GE); in compute_range_item() 496 case Py_GE: in range_richcompare()
|
H A D | sliceobject.c | 588 case Py_GE: in slice_richcompare()
|
H A D | object.c | 656 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE}; 719 assert(Py_LT <= op && op <= Py_GE); in PyObject_RichCompare()
|
H A D | floatobject.c | 576 case Py_GE: in float_richcompare()
|
H A D | setobject.c | 1827 case Py_GE: in set_richcompare()
|
H A D | bytesobject.c | 1548 case Py_GE: in bytes_richcompare()
|
H A D | dictobject.c | 4693 case Py_GE: in dictview_richcompare()
|
H A D | typeobject.c | 7031 RICHCMP_WRAPPER(ge, Py_GE)
|
H A D | unicodeobject.c | 11332 case Py_GE: in PyUnicode_RichCompare()
|
/third_party/python/Python/ |
H A D | specialize.c | 1900 [Py_GE] = 0 | 2 | 4, 1930 assert(oparg <= Py_GE); in _Py_Specialize_CompareOp()
|
H A D | ceval.c | 3703 assert(oparg <= Py_GE);
|
H A D | compile.c | 2869 cmp = Py_GE; in compiler_addcompare()
|
/third_party/python/Modules/ |
H A D | arraymodule.c | 731 case Py_GE: cmp = result >= 0; break; in array_richcompare() 773 case Py_GE: cmp = vs >= ws; break; in array_richcompare()
|
H A D | _operator.c | 654 return PyObject_RichCompare(a, b, Py_GE); in _operator_ge_impl()
|
H A D | _collectionsmodule.c | 1468 case Py_GE: cmp = y == NULL; break; /* if w was not longer */ in deque_richcompare()
|
H A D | _ssl.c | 5055 case Py_GE: in PySSLSession_richcompare()
|
/third_party/python/Modules/_decimal/ |
H A D | _decimal.c | 4608 case Py_GE: in dec_richcompare()
|
Completed in 106 milliseconds