/external/python/cpython2/Include/ |
D | opcode.h | 163 …op {PyCmp_LT=Py_LT, PyCmp_LE=Py_LE, PyCmp_EQ=Py_EQ, PyCmp_NE=Py_NE, PyCmp_GT=Py_GT, PyCmp_GE=Py_GE,
|
D | object.h | 892 #define Py_GE 5 macro
|
/external/python/cpython3/Include/ |
D | object.h | 539 #define Py_GE 5 macro 554 case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
/external/python/cpython3/Objects/ |
D | rangeobject.c | 210 cmp_result = PyObject_RichCompareBool(lo, hi, Py_GE); in compute_range_length() 299 cmp_result = PyObject_RichCompareBool(i, r->length, Py_GE); in compute_range_item() 484 case Py_GE: in range_richcompare()
|
D | sliceobject.c | 578 case Py_GE: in slice_richcompare()
|
D | object.c | 650 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE}; 713 assert(Py_LT <= op && op <= Py_GE); in PyObject_RichCompare()
|
D | floatobject.c | 520 case Py_GE: in float_richcompare()
|
D | setobject.c | 1787 case Py_GE: in set_richcompare()
|
/external/python/cffi/c/ |
D | minibuffer.h | 227 case Py_GE: cmp = cmp >= 0; break; in mb_richcompare()
|
/external/python/cpython3/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 ``<``,
|
/external/python/cpython2/Objects/ |
D | object.c | 603 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE}; 887 case Py_GE: c = c >= 0; break; in convert_3way_to_object() 953 assert(Py_LT <= op && op <= Py_GE); in PyObject_RichCompare()
|
D | tupleobject.c | 613 case Py_GE: cmp = vlen >= wlen; break; in tuplerichcompare()
|
D | bytesobject.c | 1608 case Py_GE: in bytes_richcompare() 1644 case Py_GE: c = c >= 0; break; in bytes_richcompare()
|
D | floatobject.c | 611 case Py_GE: in float_richcompare()
|
D | stringobject.c | 1212 case Py_EQ:case Py_LE:case Py_GE: in string_richcompare() 1248 case Py_GE: c = c >= 0; break; in string_richcompare()
|
/external/python/cpython2/Doc/c-api/ |
D | object.rst | 105 :const:`Py_NE`, :const:`Py_GT`, or :const:`Py_GE`, corresponding to ``<``, 115 :const:`Py_NE`, :const:`Py_GT`, or :const:`Py_GE`, corresponding to ``<``,
|
/external/python/cpython2/Modules/ |
D | operator.c | 138 spamrc(op_ge , Py_GE) in spami()
|
D | selectmodule.c | 1402 case Py_GE: in kqueue_event_richcompare()
|
D | _collectionsmodule.c | 1064 case Py_GE: cmp = y == NULL; break; /* if w was not longer */ in deque_richcompare()
|
D | arraymodule.c | 561 case Py_GE: cmp = vs >= ws; break; in array_richcompare()
|
/external/python/cpython3/Modules/ |
D | arraymodule.c | 711 case Py_GE: cmp = result >= 0; break; in array_richcompare() 753 case Py_GE: cmp = vs >= ws; break; in array_richcompare()
|
D | _operator.c | 639 return PyObject_RichCompare(a, b, Py_GE); in _operator_ge_impl()
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | bfloat16.cc | 308 case Py_GE: in PyBfloat16_RichCompare()
|
/external/python/cpython3/Doc/extending/ |
D | newtypes.rst | 407 case Py_GE: c = size1 >= size2; break;
|
/external/python/pybind11/include/pybind11/ |
D | pytypes.h | 124 bool operator>=(object_api const &other) const { return rich_compare(other, Py_GE); }
|