Home
last modified time | relevance | path

Searched refs:cnt2 (Results 1 - 16 of 16) sorted by relevance

/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H A Dtimer_mim.c9 __u64 cnt1, cnt2; in timer_mim() local
26 cnt2 = READ_ONCE(timer_skel->bss->cnt); in timer_mim()
27 if (cnt2 != cnt1) in timer_mim()
31 ASSERT_GT(cnt2, cnt1, "cnt"); in timer_mim()
45 cnt2 = READ_ONCE(timer_skel->bss->cnt); in timer_mim()
46 if (cnt2 == cnt1) in timer_mim()
49 ASSERT_EQ(cnt2, cnt1, "cnt"); in timer_mim()
/kernel/linux/linux-5.10/drivers/net/hamradio/
H A Dbaycom_epp.c558 int cnt2, ret = 0; in receive() local
566 cnt2 = (cnt > sizeof(tmp)) ? sizeof(tmp) : cnt; in receive()
567 cnt -= cnt2; in receive()
568 if (cnt2 != pp->ops->epp_read_data(pp, tmp, cnt2, 0)) { in receive()
573 for (; cnt2 > 0; cnt2--, cp++) { in receive()
645 int cnt, cnt2; in epp_bh() local
674 cnt2 = tmp[0] | (tmp[1] << 8); in epp_bh()
675 cnt2 in epp_bh()
[all...]
/kernel/linux/linux-6.6/drivers/net/hamradio/
H A Dbaycom_epp.c558 int cnt2, ret = 0; in receive() local
566 cnt2 = (cnt > sizeof(tmp)) ? sizeof(tmp) : cnt; in receive()
567 cnt -= cnt2; in receive()
568 if (cnt2 != pp->ops->epp_read_data(pp, tmp, cnt2, 0)) { in receive()
573 for (; cnt2 > 0; cnt2--, cp++) { in receive()
639 int cnt, cnt2; in epp_bh() local
668 cnt2 = tmp[0] | (tmp[1] << 8); in epp_bh()
669 cnt2 in epp_bh()
[all...]
/kernel/linux/linux-6.6/drivers/pwm/
H A Dpwm-dwc.c49 u32 cnt2; member
277 dwc->ctx[i].cnt2 = dwc_pwm_readl(dwc, DWC_TIM_LD_CNT2(i)); in dwc_pwm_suspend()
292 dwc_pwm_writel(dwc, dwc->ctx[i].cnt2, DWC_TIM_LD_CNT2(i)); in dwc_pwm_resume()
/kernel/linux/linux-5.10/drivers/ide/
H A Dpdc202xx_new.c203 u8 cnt0, cnt1, cnt2, cnt3; in read_counter() local
216 cnt2 = inb(sec_dma_base + 0x03); in read_counter()
220 count = (cnt3 << 23) | (cnt2 << 15) | (cnt1 << 8) | cnt0; in read_counter()
229 DBG("cnt0[%02X] cnt1[%02X] cnt2[%02X] cnt3[%02X]\n", in read_counter()
230 cnt0, cnt1, cnt2, cnt3); in read_counter()
/kernel/linux/linux-6.6/tools/testing/selftests/net/mptcp/
H A Dmptcp_join.sh1806 local cnt2
1812 cnt2=$(ss -N $ns2 -tOni | grep -c token)
1813 if [ "$cnt1" != "$subflow_nr" ] || [ "$cnt2" != "$subflow_nr" ]; then
1814 fail_test "got $cnt1:$cnt2 subflows expected $subflow_nr"
1834 local cnt2
1840 cnt2=$(ss -N $ns2 -inmHM | mptcp_lib_get_info_value "$info2" "$info2")
1843 [ -z "$cnt2" ] && cnt2=0
1845 if [ "$cnt1" != "$exp1" ] || [ "$cnt2" != "$exp2" ]; then
1846 fail_test "got $cnt1:$cnt2
[all...]
/kernel/linux/linux-6.6/drivers/perf/amlogic/
H A Dmeson_ddr_pmu_core.c73 u64 cnt1, cnt2; in ddr_cnt_addition() local
79 cnt2 = add2->channel_cnt[i]; in ddr_cnt_addition()
81 sum->channel_cnt[i] = cnt1 + cnt2; in ddr_cnt_addition()
/kernel/linux/linux-5.10/net/sctp/
H A Dbind_addr.c335 struct sctp_sock *sp2, int cnt2) in sctp_bind_addrs_check()
359 return (cnt == cnt2) ? 0 : (exist ? -EEXIST : 1); in sctp_bind_addrs_check()
334 sctp_bind_addrs_check(struct sctp_sock *sp, struct sctp_sock *sp2, int cnt2) sctp_bind_addrs_check() argument
/kernel/linux/linux-6.6/net/sctp/
H A Dbind_addr.c335 struct sctp_sock *sp2, int cnt2) in sctp_bind_addrs_check()
359 return (cnt == cnt2) ? 0 : (exist ? -EEXIST : 1); in sctp_bind_addrs_check()
334 sctp_bind_addrs_check(struct sctp_sock *sp, struct sctp_sock *sp2, int cnt2) sctp_bind_addrs_check() argument
/kernel/linux/linux-5.10/sound/isa/wavefront/
H A Dwavefront_synth.c690 int i, x, cnt, cnt2; in wavefront_get_patch_status()
717 for (i = 0, cnt = 0, cnt2 = 0; i < WF_MAX_PATCH; i++) { in wavefront_get_patch_status()
722 cnt2++; in wavefront_get_patch_status()
726 snd_printk ("%d patch slots filled, %d in use\n", cnt, cnt2); in wavefront_get_patch_status()
688 int i, x, cnt, cnt2; wavefront_get_patch_status() local
/kernel/linux/linux-6.6/sound/isa/wavefront/
H A Dwavefront_synth.c692 int i, x, cnt, cnt2; in wavefront_get_patch_status()
720 for (i = 0, cnt = 0, cnt2 = 0; i < WF_MAX_PATCH; i++) { in wavefront_get_patch_status()
725 cnt2++; in wavefront_get_patch_status()
729 snd_printk ("%d patch slots filled, %d in use\n", cnt, cnt2); in wavefront_get_patch_status()
690 int i, x, cnt, cnt2; wavefront_get_patch_status() local
/kernel/linux/linux-5.10/kernel/trace/
H A Dring_buffer.c703 unsigned long cnt2, top2, bottom2; in rb_time_cmpxchg() local
710 if (!__rb_time_read(t, &val, &cnt2)) in rb_time_cmpxchg()
716 if ((cnt & 3) != cnt2) in rb_time_cmpxchg()
719 cnt2 = cnt + 1; in rb_time_cmpxchg()
726 top2 = rb_time_val_cnt(top2, cnt2); in rb_time_cmpxchg()
727 bottom2 = rb_time_val_cnt(bottom2, cnt2); in rb_time_cmpxchg()
729 if (!rb_time_read_cmpxchg(&t->cnt, cnt, cnt2)) in rb_time_cmpxchg()
/kernel/linux/linux-5.10/drivers/media/usb/pvrusb2/
H A Dpvrusb2-hdw.c2349 unsigned int idx,cnt1,cnt2,m; in pvr2_hdw_create() local
2578 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2"); in pvr2_hdw_create()
2579 cnt1 += cnt2; in pvr2_hdw_create()
2581 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"_%c", in pvr2_hdw_create()
2583 cnt1 += cnt2; in pvr2_hdw_create()
/kernel/linux/linux-6.6/drivers/media/usb/pvrusb2/
H A Dpvrusb2-hdw.c2349 unsigned int idx,cnt1,cnt2,m; in pvr2_hdw_create() local
2578 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"pvrusb2"); in pvr2_hdw_create()
2579 cnt1 += cnt2; in pvr2_hdw_create()
2581 cnt2 = scnprintf(hdw->name+cnt1,sizeof(hdw->name)-cnt1,"_%c", in pvr2_hdw_create()
2583 cnt1 += cnt2; in pvr2_hdw_create()
/kernel/linux/linux-5.10/include/net/sctp/
H A Dstructs.h1180 struct sctp_sock *sp2, int cnt2);
/kernel/linux/linux-6.6/include/net/sctp/
H A Dstructs.h1204 struct sctp_sock *sp2, int cnt2);

Completed in 46 milliseconds