Searched refs:dictionary (Results 1 – 7 of 7) sorted by relevance
/linux-2.6.39/Documentation/ |
D | xz.txt | 49 dictionary. It will also append a four-byte trailer containing the 52 which will use no BCJ filter and 1 MiB LZMA2 dictionary. 70 In userspace, LZMA2 is typically used with dictionary sizes of several 71 megabytes. The decoder needs to have the dictionary in RAM, thus big 73 by the kernel. 1 MiB is probably the maximum reasonable dictionary 80 An exception to above dictionary size limitation is when the decoder 83 doesn't depend on the dictionary size, and it is perfectly fine to 84 use a big dictionary: for maximum compression, the dictionary should
|
/linux-2.6.39/include/linux/ |
D | zlib.h | 499 const Byte *dictionary, 635 const Byte *dictionary,
|
/linux-2.6.39/lib/xz/ |
D | xz_dec_lzma2.c | 44 struct dictionary { struct 264 struct dictionary dict; 286 static void dict_reset(struct dictionary *dict, struct xz_buf *b) in dict_reset() 300 static void dict_limit(struct dictionary *dict, size_t out_max) in dict_limit() 309 static inline bool dict_has_space(const struct dictionary *dict) in dict_has_space() 320 static inline uint32_t dict_get(const struct dictionary *dict, uint32_t dist) in dict_get() 333 static inline void dict_put(struct dictionary *dict, uint8_t byte) in dict_put() 346 static bool dict_repeat(struct dictionary *dict, uint32_t *len, uint32_t dist) in dict_repeat() 374 static void dict_uncompressed(struct dictionary *dict, struct xz_buf *b, in dict_uncompressed() 416 static uint32_t dict_flush(struct dictionary *dict, struct xz_buf *b) in dict_flush()
|
/linux-2.6.39/lib/zlib_deflate/ |
D | deflate.c | 256 const Byte *dictionary, 265 if (strm == NULL || strm->state == NULL || dictionary == NULL) 271 strm->adler = zlib_adler32(strm->adler, dictionary, dictLength); 277 dictionary += dictLength - length; /* use the tail of the dictionary */ 280 memcpy((char *)s->window, dictionary, length);
|
/linux-2.6.39/lib/zlib_inflate/ |
D | inflate.c | 765 int zlib_inflateSetDictionary(z_streamp strm, const Byte *dictionary, 780 id = zlib_adler32(id, dictionary, dictLength); 789 memcpy(state->window, dictionary + dictLength - state->wsize, 794 memcpy(state->window + state->wsize - dictLength, dictionary,
|
/linux-2.6.39/tools/perf/Documentation/ |
D | perf-script-python.txt | 249 The syscalls 'autodict' object is a special kind of Python dictionary 261 effectively end up with a single-level dictionary keyed on syscall id 265 dictionary and displays a line for each entry containing the syscall 586 dictionary that implements Perl's 'autovivifying' hashes in Python 591 autodict() - returns an autovivifying dictionary instance
|
/linux-2.6.39/Documentation/filesystems/ |
D | squashfs.txt | 101 dictionary size). If non-default compression options have been used, then
|