Home
last modified time | relevance | path

Searched refs:lc (Results 1 – 7 of 7) sorted by relevance

/lib/
A Dlru_cache.c104 lc = kzalloc(sizeof(*lc), GFP_KERNEL); in lc_create()
105 if (!lc) in lc_create()
136 return lc; in lc_create()
143 kfree(lc); in lc_create()
167 if (!lc) in lc_destroy()
173 kfree(lc); in lc_destroy()
229 lc->name, lc->used, lc->nr_elements, in lc_seq_printf_stats()
230 lc->hits, lc->misses, lc->starving, lc->locked, lc->changed); in lc_seq_printf_stats()
235 return lc->lc_slot + (enr % lc->nr_elements); in lc_hash_slot()
416 if (lc->pending_changes >= lc->max_pending_changes) in __lc_get()
[all …]
A Ddecompress_unlzma.c352 int lc, uint32_t literal_pos_mask) { in process_bit0() argument
357 * (((get_pos(wr) & literal_pos_mask) << lc) in process_bit0()
358 + (wr->previous_byte >> (8 - lc)))) in process_bit0()
548 int lc, pb, lp; in unlzma() local
594 lc = header.pos; in unlzma()
595 while (lc >= 9) { in unlzma()
597 lc -= 9; in unlzma()
623 num_probs = LZMA_BASE_SIZE + (LZMA_LIT_SIZE << (lc + lp)); in unlzma()
627 num_probs = LZMA_LITERAL + (LZMA_LIT_SIZE << (lc + lp)); in unlzma()
639 lc, literal_pos_mask)) { in unlzma()
A Dkstrtox.c62 unsigned int lc = _tolower(c); in _parse_integer_limit() local
67 else if ('a' <= lc && lc <= 'f') in _parse_integer_limit()
68 val = lc - 'a' + 10; in _parse_integer_limit()
/lib/zlib_deflate/
A Ddeftree.c918 unsigned lc /* match length-MIN_MATCH or unmatched char (if dist==0) */ argument
922 s->l_buf[s->last_lit++] = (uch)lc;
925 s->dyn_ltree[lc].Freq++;
931 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
934 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++;
971 int lc; /* match length or unmatched char (if dist == 0) */ local
978 lc = s->l_buf[lx++];
980 send_code(s, lc, ltree); /* send a literal byte */
981 Tracecv(isgraph(lc), (stderr," '%c' ", lc));
984 code = length_code[lc];
[all …]
A Ddefutil.h275 int zlib_tr_tally (deflate_state *s, unsigned dist, unsigned lc);
/lib/xz/
A Dxz_dec_lzma2.c153 uint32_t lc; member
606 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs()
607 uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; in lzma_literal_probs()
850 s->lzma.lc = props; in lzma_props()
852 if (s->lzma.lc + s->lzma.literal_pos_mask > 4) in lzma_props()
A DKconfig54 been replaced with a bitwise-negation of the lc/lp/pb

Completed in 13 milliseconds