Searched refs:lookdict (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Objects/ |
D | dictobject.c | 228 static Py_ssize_t lookdict(PyDictObject *mp, PyObject *key, 773 lookdict(PyDictObject *mp, PyObject *key, in lookdict() function 838 mp->ma_keys->dk_lookup = lookdict; in lookdict_unicode() 839 return lookdict(mp, key, hash, value_addr); in lookdict_unicode() 881 mp->ma_keys->dk_lookup = lookdict; in lookdict_unicode_nodummy() 882 return lookdict(mp, key, hash, value_addr); in lookdict_unicode_nodummy() 923 Py_ssize_t ix = lookdict(mp, key, hash, value_addr); in lookdict_split() 963 if (((PyDictObject *)dict)->ma_keys->dk_lookup != lookdict) in _PyDict_HasOnlyStringKeys() 1065 assert(PyUnicode_CheckExact(key) || mp->ma_keys->dk_lookup == lookdict); in insertdict() 1146 newkeys->dk_lookup = lookdict; in insert_to_emptydict() [all …]
|
D | dictnotes.txt | 142 in lookdict() and lookdict_string(). Set i^=1 at the top of the
|
/external/python/cpython2/Objects/ |
D | dictnotes.txt | 158 in lookdict() and lookdict_string(). Set i^=1 at the top of the 167 * If lookdict() and lookdict_string() are specialized for small dicts 185 If lookdict() and lookdict_string() are specialized for smaller dictionaries, 253 jostled (to minimize collisions). The lookdict() routine can then
|
D | dictobject.c | 320 lookdict(PyDictObject *mp, PyObject *key, register long hash) in lookdict() function 356 return lookdict(mp, key, hash); in lookdict() 388 return lookdict(mp, key, hash); in lookdict() 425 mp->ma_lookup = lookdict; in lookdict_string() 426 return lookdict(mp, key, hash); in lookdict_string()
|
/external/libchrome/third_party/ply/ |
D | yacc.py | 2209 lookdict = {} # Dictionary of lookback relations 2265 lookdict[(state,N)] = lookb 2267 return lookdict,includedict
|
/external/ply/ply/ply/ |
D | yacc.py | 2373 lookdict = {} # Dictionary of lookback relations 2436 lookdict[(state, N)] = lookb 2438 return lookdict, includedict
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | yacc.py | 2373 lookdict = {} # Dictionary of lookback relations 2436 lookdict[(state, N)] = lookb 2438 return lookdict, includedict
|
/external/python/pycparser/pycparser/ply/ |
D | yacc.py | 2372 lookdict = {} # Dictionary of lookback relations 2435 lookdict[(state, N)] = lookb 2437 return lookdict, includedict
|