Home
last modified time | relevance | path

Searched refs:cutoff (Results 1 – 19 of 19) sorted by relevance

/linux/init/
H A Dmain.c962 const char *cutoff; in print_kernel_cmdline() local
968 cutoff = cmdline; in print_kernel_cmdline()
970 cutoff = strchr(cutoff + 1, ' '); in print_kernel_cmdline()
971 if (!cutoff || cutoff - cmdline > IDEAL_CMDLINE_SPLIT_LEN) in print_kernel_cmdline()
973 prev_cutoff = cutoff; in print_kernel_cmdline()
976 cutoff = prev_cutoff; in print_kernel_cmdline()
977 else if (!cutoff) in print_kernel_cmdline()
981 first_space = cutoff; in print_kernel_cmdline()
985 while (*cutoff == ' ') in print_kernel_cmdline()
986 cutoff++; in print_kernel_cmdline()
[all …]
/linux/arch/x86/kernel/cpu/microcode/
H A Damd.c234 u32 cutoff; in need_sha_check() local
241 cutoff = get_cutoff_revision(cur_rev); in need_sha_check()
242 if (cutoff) in need_sha_check()
243 return cur_rev <= cutoff; in need_sha_check()
508 u32 cur_rev, cutoff, patch_rev; in verify_patch() local
554 cutoff = get_cutoff_revision(cur_rev); in verify_patch()
555 if (!cutoff) in verify_patch()
561 cur_rev, cutoff, patch_rev); in verify_patch()
563 if (cur_rev <= cutoff && patch_rev <= cutoff) in verify_patch()
566 if (cur_rev > cutoff && patch_rev > cutoff) in verify_patch()
/linux/Documentation/admin-guide/media/
H A Dsi476x.rst43 0x01 hblend_int Flag, set when HiBlend cutoff
45 0x02 hicut_int Flag, set when HiCut cutoff
56 0x08 hicut HiCut cutoff frequency in units of
58 0x09 hiblend HiBlend cutoff frequency in units
/linux/fs/
H A Dpnode.c599 struct mount *cutoff = m, *p; in handle_locked() local
608 cutoff = p->mnt_parent; in handle_locked()
611 cutoff = p; in handle_locked()
612 while (m != cutoff) { in handle_locked()
/linux/sound/pci/emu10k1/
H A Demu10k1_callback.c489 unsigned char cutoff; in make_fmmod() local
493 cutoff = (vp->reg.parm.fmmod & 0xff); in make_fmmod()
497 return ((unsigned char)pitch << 8) | cutoff; in make_fmmod()
/linux/lib/reed_solomon/
H A Dtest_rslib.c412 int errs, eras, cutoff; in exercise_rs_bc() local
422 cutoff = nroots <= len - errs ? nroots : len - errs; in exercise_rs_bc()
423 for (; eras <= cutoff; eras++) in exercise_rs_bc()
/linux/sound/isa/sb/
H A Demu8000_callback.c374 unsigned char cutoff; in set_fmmod() local
378 cutoff = (vp->reg.parm.fmmod & 0xff); in set_fmmod()
382 fmmod = ((unsigned char)pitch<<8) | cutoff; in set_fmmod()
/linux/include/uapi/sound/
H A Dsfnt_info.h92 unsigned char cutoff; /* initial cutoff (0xff) */ member
/linux/fs/nfsd/
H A Dnfs4layouts.c672 ktime_t now, cutoff; in nfsd4_cb_layout_done() local
693 cutoff = ktime_add_ns(task->tk_start, in nfsd4_cb_layout_done()
696 if (ktime_before(now, cutoff)) { in nfsd4_cb_layout_done()
H A Dnfs4state.c6660 time64_t cutoff; in nfsd4_ssc_shutdown_umount()
6668 if (last_refresh < lt->cutoff) in nfsd4_ssc_shutdown_umount()
6670 time_remaining = last_refresh - lt->cutoff; in nfsd4_ssc_shutdown_umount()
6866 nn->nfs40_last_revoke > lt->cutoff) { in nfs40_clean_admin_revoked()
6905 .cutoff = ktime_get_boottime_seconds() - nn->nfsd4_lease, in nfs4_laundromat()
6632 time64_t cutoff; global() member
/linux/drivers/input/misc/
H A Dkxtj9.c57 unsigned int cutoff; member
170 if (poll_interval < kxtj9_odr_table[i].cutoff) in kxtj9_update_odr()
/linux/include/net/
H A Dtcp.h790 int cutoff; in tcp_bound_to_half_wnd() local
800 cutoff = (tp->max_window >> 1); in tcp_bound_to_half_wnd()
802 cutoff = tp->max_window; in tcp_bound_to_half_wnd()
804 if (cutoff && pktsize > cutoff) in tcp_bound_to_half_wnd()
805 return max_t(int, cutoff, 68U - tp->tcp_header_len); in tcp_bound_to_half_wnd()
/linux/Documentation/devicetree/bindings/iio/accel/
H A Dlis302.txt55 - st,highpass-cutoff-hz=: 1, 2, 4 or 8 for 1Hz, 2Hz, 4Hz or 8Hz of
/linux/Documentation/devicetree/bindings/sound/
H A Dst,sta350.txt99 If present, the noise-shaping technique on the DC cutoff filter are
/linux/arch/arm/boot/dts/ti/omap/
H A Domap3-n950-n9.dtsi315 st,highpass-cutoff-hz = <2>;
/linux/drivers/block/zram/
H A Dzram_drv.c430 static void mark_idle(struct zram *zram, ktime_t cutoff) in mark_idle() argument
453 is_idle = !cutoff || in mark_idle()
454 ktime_after(cutoff, zram->table[index].ac_time); in mark_idle()
/linux/drivers/md/dm-vdo/
H A Ddedupe.c2299 unsigned long cutoff = jiffies - timeout_jiffies; in timeout_index_operations_callback() local
2304 if (cutoff <= context->submission_jiffies) { in timeout_index_operations_callback()
/linux/net/ceph/
H A Dosd_client.c3428 unsigned long cutoff = jiffies - opts->osd_keepalive_timeout; in handle_timeout() local
3451 if (time_before(req->r_stamp, cutoff)) { in handle_timeout()
/linux/lib/zstd/compress/
H A Dzstd_compress.c2239 size_t cutoff = attachDictSizeCutoffs[cdict->matchState.cParams.strategy]; in ZSTD_shouldAttachDict() local
2242 || ( ( pledgedSrcSize <= cutoff in ZSTD_shouldAttachDict()