Home
last modified time | relevance | path

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

12

/external/python/cpython2/Include/
Dopcode.h163 …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,
Dobject.h892 #define Py_GE 5 macro
/external/python/cpython3/Include/
Dobject.h539 #define Py_GE 5 macro
554 case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
/external/python/cpython3/Objects/
Drangeobject.c210 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()
Dsliceobject.c578 case Py_GE: in slice_richcompare()
Dobject.c650 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()
Dfloatobject.c520 case Py_GE: in float_richcompare()
Dsetobject.c1787 case Py_GE: in set_richcompare()
/external/python/cffi/c/
Dminibuffer.h227 case Py_GE: cmp = cmp >= 0; break; in mb_richcompare()
/external/python/cpython3/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 ``<``,
/external/python/cpython2/Objects/
Dobject.c603 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()
Dtupleobject.c613 case Py_GE: cmp = vlen >= wlen; break; in tuplerichcompare()
Dbytesobject.c1608 case Py_GE: in bytes_richcompare()
1644 case Py_GE: c = c >= 0; break; in bytes_richcompare()
Dfloatobject.c611 case Py_GE: in float_richcompare()
Dstringobject.c1212 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/
Dobject.rst105 :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/
Doperator.c138 spamrc(op_ge , Py_GE) in spami()
Dselectmodule.c1402 case Py_GE: in kqueue_event_richcompare()
D_collectionsmodule.c1064 case Py_GE: cmp = y == NULL; break; /* if w was not longer */ in deque_richcompare()
Darraymodule.c561 case Py_GE: cmp = vs >= ws; break; in array_richcompare()
/external/python/cpython3/Modules/
Darraymodule.c711 case Py_GE: cmp = result >= 0; break; in array_richcompare()
753 case Py_GE: cmp = vs >= ws; break; in array_richcompare()
D_operator.c639 return PyObject_RichCompare(a, b, Py_GE); in _operator_ge_impl()
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16.cc308 case Py_GE: in PyBfloat16_RichCompare()
/external/python/cpython3/Doc/extending/
Dnewtypes.rst407 case Py_GE: c = size1 >= size2; break;
/external/python/pybind11/include/pybind11/
Dpytypes.h124 bool operator>=(object_api const &other) const { return rich_compare(other, Py_GE); }

12