Searched refs:dict_get (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Objects/clinic/ |
D | dictobject.c.h | 51 {"get", (PyCFunction)dict_get, METH_FASTCALL, dict_get__doc__}, 57 dict_get(PyDictObject *self, PyObject *const *args, Py_ssize_t nargs) in dict_get() function
|
/external/xz-embedded/linux/lib/xz/ |
D | xz_dec_lzma2.c | 320 static inline uint32_t dict_get(const struct dictionary *dict, uint32_t dist) in dict_get() function 574 uint32_t prev_byte = dict_get(&s->dict, 0); in lzma_literal_probs() 596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
|
/external/python/cpython3/Modules/ |
D | _collectionsmodule.c | 2268 PyObject *dict_get; in _count_elements() local 2283 dict_get = _PyType_LookupId(&PyDict_Type, &PyId_get); in _count_elements() 2287 if (mapping_get != NULL && mapping_get == dict_get && in _count_elements()
|
/external/toybox/toys/pending/ |
D | xzcat.c | 1468 static inline uint32_t dict_get(const struct dictionary *dict, uint32_t dist) in dict_get() function 1716 uint32_t prev_byte = dict_get(&s->dict, 0); in lzma_literal_probs() 1738 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
|
/external/python/cpython2/Objects/ |
D | dictobject.c | 2019 dict_get(register PyDictObject *mp, PyObject *args) in dict_get() function 2325 {"get", (PyCFunction)dict_get, METH_VARARGS,
|
/external/python/cpython2/Doc/faq/ |
D | programming.rst | 253 dict_get = dict.get # look up the method once 255 dict[key] = dict_get(key, 0) + 1
|