Searched refs:tmpkey (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Objects/ |
D | setobject.c | 1817 PyObject *tmpkey; in set_contains() local 1825 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_contains() 1826 if (tmpkey == NULL) in set_contains() 1828 rv = set_contains_key(so, tmpkey); in set_contains() 1829 Py_DECREF(tmpkey); in set_contains() 1850 PyObject *tmpkey; in set_remove() local 1858 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_remove() 1859 if (tmpkey == NULL) in set_remove() 1861 rv = set_discard_key(so, tmpkey); in set_remove() 1862 Py_DECREF(tmpkey); in set_remove() [all …]
|
/external/python/cpython2/Objects/ |
D | setobject.c | 1869 PyObject *tmpkey; in set_contains() local 1877 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_contains() 1878 if (tmpkey == NULL) in set_contains() 1880 rv = set_contains_key(so, tmpkey); in set_contains() 1881 Py_DECREF(tmpkey); in set_contains() 1902 PyObject *tmpkey; in set_remove() local 1910 tmpkey = make_new_set(&PyFrozenSet_Type, key); in set_remove() 1911 if (tmpkey == NULL) in set_remove() 1913 rv = set_discard_key(so, tmpkey); in set_remove() 1914 Py_DECREF(tmpkey); in set_remove() [all …]
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_security_handler.cpp | 453 uint8_t tmpkey[32] = {}; in CheckUserPassword() local 459 tmpkey[j] = m_EncryptKey[j] ^ static_cast<uint8_t>(i); in CheckUserPassword() 460 CRYPT_ArcFourCryptBlock(test, {tmpkey, m_KeyLen}); in CheckUserPassword()
|
/external/python/cffi/c/ |
D | _cffi_backend.c | 6084 PyObject *dict1 = NULL, *dict2 = NULL, *combined = NULL, *tmpkey = NULL; local 6119 tmpkey = PyTuple_GET_ITEM(enumerators, i); 6120 Py_INCREF(tmpkey); 6121 if (!PyText_Check(tmpkey)) { 6123 if (PyUnicode_Check(tmpkey)) { 6124 const char *text = PyText_AsUTF8(tmpkey); 6127 Py_DECREF(tmpkey); 6128 tmpkey = PyString_FromString(text); 6129 if (tmpkey == NULL) 6142 if (PyDict_SetItem(dict1, tmpkey, value) < 0) [all …]
|