HomeSort by relevance Sort by last modified time
    Searched defs:ISLT (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
listobject.c 986 * NULL (use the ISLT macro if you don't know, or call PyObject_RichCompareBool
991 islt(PyObject *x, PyObject *y, PyObject *compare) function
1025 * islt. This avoids a layer of function call in the usual case, and
1029 #define ISLT(X, Y, COMPARE) ((COMPARE) == NULL ? \
1031 islt(X, Y, COMPARE))
1037 #define IFLT(X, Y) if ((k = ISLT(X, Y, compare)) < 0) goto fail; \
1047 If islt() complains return -1, else 0.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
listobject.c 986 * NULL (use the ISLT macro if you don't know, or call PyObject_RichCompareBool
991 islt(PyObject *x, PyObject *y, PyObject *compare) function
1025 * islt. This avoids a layer of function call in the usual case, and
1029 #define ISLT(X, Y, COMPARE) ((COMPARE) == NULL ? \
1031 islt(X, Y, COMPARE))
1037 #define IFLT(X, Y) if ((k = ISLT(X, Y, compare)) < 0) goto fail; \
1047 If islt() complains return -1, else 0.
    [all...]
  /external/python/cpython2/Objects/
listobject.c 989 * NULL (use the ISLT macro if you don't know, or call PyObject_RichCompareBool
994 islt(PyObject *x, PyObject *y, PyObject *compare) function
1028 * islt. This avoids a layer of function call in the usual case, and
1032 #define ISLT(X, Y, COMPARE) ((COMPARE) == NULL ? \
1034 islt(X, Y, COMPARE))
1040 #define IFLT(X, Y) if ((k = ISLT(X, Y, compare)) < 0) goto fail; \
1050 If islt() complains return -1, else 0.
    [all...]

Completed in 3520 milliseconds