Searched refs:seq (Results 1 – 4 of 4) sorted by relevance
/lib/ |
D | flex_proportions.c | 143 unsigned int seq; in fprop_fraction_single() local 147 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_single() 151 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_single() 231 unsigned int seq; in fprop_fraction_percpu() local 235 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_percpu() 239 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_percpu()
|
D | lru_cache.c | 229 void lc_seq_printf_stats(struct seq_file *seq, struct lru_cache *lc) in lc_seq_printf_stats() argument 238 seq_printf(seq, "\t%s: used:%u/%u hits:%lu misses:%lu starving:%lu locked:%lu changed:%lu\n", in lc_seq_printf_stats() 638 void lc_seq_dump_details(struct seq_file *seq, struct lru_cache *lc, char *utext, in lc_seq_dump_details() argument 645 seq_printf(seq, "\tnn: lc_number (new nr) refcnt %s\n ", utext); in lc_seq_dump_details() 649 seq_printf(seq, "\t%5d: %6d %8d %6d ", in lc_seq_dump_details() 652 seq_printf(seq, "\t%5d: %6d %-8s %6d ", in lc_seq_dump_details() 655 detail(seq, e); in lc_seq_dump_details() 656 seq_putc(seq, '\n'); in lc_seq_dump_details()
|
/lib/vdso/ |
D | gettimeofday.c | 46 u32 seq; in do_hres() local 49 seq = vdso_read_begin(vd); in do_hres() 59 } while (unlikely(vdso_read_retry(vd, seq))); in do_hres() 75 u32 seq; in do_coarse() local 78 seq = vdso_read_begin(vd); in do_coarse() 81 } while (unlikely(vdso_read_retry(vd, seq))); in do_coarse()
|
/lib/zstd/ |
D | decompress.c | 933 seq_t seq; in ZSTD_decodeSequence() local 983 seq.offset = offset; in ZSTD_decodeSequence() 986 …seq.matchLength = ML_base[mlCode] + ((mlCode > 31) ? BIT_readBitsFast(&seqState->DStream, mlBits) … in ZSTD_decodeSequence() 990 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : … in ZSTD_decodeSequence() 1001 seq.match = NULL; in ZSTD_decodeSequence() 1003 return seq; in ZSTD_decodeSequence() 1165 seq_t seq; in ZSTD_decodeSequenceLong_generic() local 1224 seq.offset = offset; in ZSTD_decodeSequenceLong_generic() 1227 …seq.matchLength = ML_base[mlCode] + ((mlCode > 31) ? BIT_readBitsFast(&seqState->DStream, mlBits) … in ZSTD_decodeSequenceLong_generic() 1231 …seq.litLength = LL_base[llCode] + ((llCode > 15) ? BIT_readBitsFast(&seqState->DStream, llBits) : … in ZSTD_decodeSequenceLong_generic() [all …]
|