Home
last modified time | relevance | path

Searched refs:dict_get (Results 1 – 4 of 4) sorted by relevance

/external/xz-embedded/linux/lib/xz/
Dxz_dec_lzma2.c320 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/
Dxzcat.c1468 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/
Ddictobject.c1965 dict_get(register PyDictObject *mp, PyObject *args) in dict_get() function
2271 {"get", (PyCFunction)dict_get, METH_VARARGS,
/external/python/cpython2/Doc/faq/
Dprogramming.rst253 dict_get = dict.get # look up the method once
255 dict[key] = dict_get(key, 0) + 1