Home
last modified time | relevance | path

Searched refs:tmpkey (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dsetobject.c1858 PyObject *tmpkey; in set_contains() local
1866 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_contains()
1867 if (tmpkey == NULL) in set_contains()
1869 rv = set_contains_key(so, tmpkey); in set_contains()
1870 Py_DECREF(tmpkey); in set_contains()
1891 PyObject *tmpkey; in set_remove() local
1899 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_remove()
1900 if (tmpkey == NULL) in set_remove()
1902 rv = set_discard_key(so, tmpkey); in set_remove()
1903 Py_DECREF(tmpkey); in set_remove()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dsetobject.c1863 PyObject *tmpkey; in set_contains() local
1871 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_contains()
1872 if (tmpkey == NULL) in set_contains()
1874 rv = set_contains(so, tmpkey); in set_contains()
1875 Py_DECREF(tmpkey); in set_contains()
1896 PyObject *tmpkey; in set_remove() local
1904 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_remove()
1905 if (tmpkey == NULL) in set_remove()
1907 rv = set_discard_key(so, tmpkey); in set_remove()
1908 Py_DECREF(tmpkey); in set_remove()
[all …]