Home
last modified time | relevance | path

Searched refs:lookahead (Results 1 – 15 of 15) sorted by relevance

/linux-6.12.1/lib/zlib_deflate/
Ddeflate.c405 if (strm->avail_in != 0 || s->lookahead != 0 || in zlib_deflate()
547 s->lookahead = 0; in lm_init()
609 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; in longest_match()
700 if ((uInt)best_len <= s->lookahead) return best_len; in longest_match()
701 return s->lookahead; in longest_match()
754 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
757 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { in fill_window()
816 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); in fill_window()
817 s->lookahead += n; in fill_window()
820 if (s->lookahead >= MIN_MATCH) { in fill_window()
[all …]
Ddefutil.h136 uInt lookahead; /* number of valid bytes ahead in window */ member
/linux-6.12.1/drivers/tty/
Dtty_buffer.c108 p->lookahead = 0; in tty_buffer_reset()
238 buf->head->lookahead = buf->head->read; in tty_buffer_flush()
399 head->lookahead = max(head->lookahead, head->read); in lookahead_bufs()
415 count = smp_load_acquire(&head->commit) - head->lookahead; in lookahead_bufs()
424 p = char_buf_ptr(head, head->lookahead); in lookahead_bufs()
426 f = flag_buf_ptr(head, head->lookahead); in lookahead_bufs()
431 head->lookahead += count; in lookahead_bufs()
/linux-6.12.1/fs/erofs/
Dzmap.c102 erofs_off_t pos, bool lookahead) in unpack_compacted_index() argument
138 if (lookahead) in unpack_compacted_index()
211 unsigned long lcn, bool lookahead) in z_erofs_load_compact_lcluster() argument
254 return unpack_compacted_index(m, amortizedshift, pos, lookahead); in z_erofs_load_compact_lcluster()
258 unsigned int lcn, bool lookahead) in z_erofs_load_lcluster_from_disk() argument
264 return z_erofs_load_compact_lcluster(m, lcn, lookahead); in z_erofs_load_lcluster_from_disk()
/linux-6.12.1/include/linux/
Dtty_buffer.h18 unsigned int lookahead; /* Lazy update on recv, can become less than "read" */ member
/linux-6.12.1/drivers/net/wireless/ath/ath10k/
Dsdio.c931 u32 *lookahead) in ath10k_sdio_mbox_read_int_status() argument
942 *lookahead = 0; in ath10k_sdio_mbox_read_int_status()
975 *lookahead = 0; in ath10k_sdio_mbox_read_int_status()
985 *lookahead = le32_to_cpu( in ath10k_sdio_mbox_read_int_status()
987 if (!*lookahead) in ath10k_sdio_mbox_read_int_status()
1000 u32 lookahead; in ath10k_sdio_mbox_proc_pending_irqs() local
1011 &lookahead); in ath10k_sdio_mbox_proc_pending_irqs()
1017 if (!host_int_status && !lookahead) { in ath10k_sdio_mbox_proc_pending_irqs()
1023 if (lookahead) { in ath10k_sdio_mbox_proc_pending_irqs()
1026 lookahead); in ath10k_sdio_mbox_proc_pending_irqs()
[all …]
Dhtc.h235 u8 lookahead[4]; member
243 u8 lookahead[4]; member
Dhtc.c305 memcpy((u8 *)next_lookaheads, report->lookahead, 4); in ath10k_htc_process_lookahead()
335 report->lookahead, 4); in ath10k_htc_process_lookahead_bundle()
/linux-6.12.1/arch/sh/include/asm/
Dprocessor_32.h82 unsigned char lookahead; member
/linux-6.12.1/arch/x86/math-emu/
Dfpu_system.h87 #define FPU_lookahead (I387->soft.lookahead)
/linux-6.12.1/arch/x86/include/asm/fpu/
Dtypes.h93 u8 lookahead; member
/linux-6.12.1/tools/perf/util/intel-pt-decoder/
Dintel-pt-decoder.h279 int (*lookahead)(void *data, intel_pt_lookahead_cb_t cb, void *cb_data); member
Dintel-pt-decoder.c123 int (*lookahead)(void *data, intel_pt_lookahead_cb_t cb, void *cb_data); member
320 decoder->lookahead = params->lookahead; in intel_pt_decoder_new()
4461 err = decoder->lookahead(decoder->data, intel_pt_ff_cb, &d); in intel_pt_fast_forward()
/linux-6.12.1/mm/
Dslub.c4755 int lookahead = 3; in build_detached_freelist() local
4803 if (!--lookahead) in build_detached_freelist()
/linux-6.12.1/tools/perf/util/
Dintel-pt.c1330 params.lookahead = intel_pt_lookahead; in intel_pt_alloc_queue()