Searched refs:dict_get (Results 1 – 4 of 4) sorted by relevance
/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/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 | 1965 dict_get(register PyDictObject *mp, PyObject *args) in dict_get() function 2271 {"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
|