Searched refs:bval (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | dictobject.c | 1795 PyObject *adiff, *bdiff, *aval, *bval; in dict_compare() local 1805 bdiff = bval = NULL; in dict_compare() 1815 bdiff = characterize(b, a, &bval); in dict_compare() 1817 assert(!bval); in dict_compare() 1829 if (res == 0 && bval != NULL) in dict_compare() 1830 res = PyObject_Compare(aval, bval); in dict_compare() 1836 Py_XDECREF(bval); in dict_compare() 1858 PyObject *bval; in dict_equal() local 1865 bval = PyDict_GetItem((PyObject *)b, key); in dict_equal() 1867 if (bval == NULL) { in dict_equal() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | dictobject.c | 1761 PyObject *adiff, *bdiff, *aval, *bval; in dict_compare() local 1771 bdiff = bval = NULL; in dict_compare() 1781 bdiff = characterize(b, a, &bval); in dict_compare() 1783 assert(!bval); in dict_compare() 1795 if (res == 0 && bval != NULL) in dict_compare() 1796 res = PyObject_Compare(aval, bval); in dict_compare() 1802 Py_XDECREF(bval); in dict_compare() 1824 PyObject *bval; in dict_equal() local 1831 bval = PyDict_GetItem((PyObject *)b, key); in dict_equal() 1833 if (bval == NULL) { in dict_equal() [all …]
|