Searched refs:ma_lookup (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Objects/ |
D | dictobject.c | 285 mp->ma_lookup = lookdict_string; in PyDict_New() 425 mp->ma_lookup = lookdict; in lookdict_string() 549 assert(mp->ma_lookup != NULL); in insertdict() 550 ep = mp->ma_lookup(mp, key, hash); in insertdict() 736 ep = (mp->ma_lookup)(mp, key, hash); in PyDict_GetItem() 743 ep = (mp->ma_lookup)(mp, key, hash); in PyDict_GetItem() 775 ep = (mp->ma_lookup)(mp, key, hash); in _PyDict_GetItemWithError() 886 ep = (mp->ma_lookup)(mp, key, hash); in PyDict_DelItem() 918 ep = (mp->ma_lookup)(mp, key, hash); in _PyDict_DelItemIf() 1252 ep = (mp->ma_lookup)(mp, key, hash); in dict_subscript() [all …]
|
/external/python/cpython2/Include/ |
D | dictobject.h | 87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash); member
|
/external/python/cpython2/Python/ |
D | ceval.c | 2358 e = d->ma_lookup(d, w, hash); in PyEval_EvalFrameEx() 2370 e = d->ma_lookup(d, w, hash); in PyEval_EvalFrameEx()
|