Home
last modified time | relevance | path

Searched refs:clc (Results 1 – 18 of 18) sorted by relevance

/linux/kernel/time/
A Dclockevents.c35 u64 clc = (u64) latch << evt->shift; in cev_delta2ns() local
46 if ((clc >> evt->shift) != (u64)latch) in cev_delta2ns()
47 clc = ~0ULL; in cev_delta2ns()
68 if ((~0ULL - clc > rnd) && in cev_delta2ns()
70 clc += rnd; in cev_delta2ns()
72 do_div(clc, evt->mult); in cev_delta2ns()
75 return clc > 1000 ? clc : 1000; in cev_delta2ns()
235 unsigned long long clc; in clockevents_program_min_delta() local
274 unsigned long long clc; in clockevents_program_min_delta() local
306 unsigned long long clc; in clockevents_program_event() local
[all …]
/linux/net/smc/
A Dsmc_clc.c983 struct smc_clc_msg_accept_confirm *clc; in smc_clc_send_confirm_accept() local
1000 clc->hdr.typev1 = SMC_TYPE_D; in smc_clc_send_confirm_accept()
1002 clc->d0.token = conn->rmb_desc->token; in smc_clc_send_confirm_accept()
1004 clc->d0.dmbe_idx = 0; in smc_clc_send_confirm_accept()
1027 clc->hdr.typev1 = SMC_TYPE_R; in smc_clc_send_confirm_accept()
1035 clc->r0.rmb_rkey = in smc_clc_send_confirm_accept()
1039 switch (clc->hdr.type) { in smc_clc_send_confirm_accept()
1041 clc->r0.qp_mtu = link->path_mtu; in smc_clc_send_confirm_accept()
1050 hton24(clc->r0.psn, link->psn_initial); in smc_clc_send_confirm_accept()
1091 if (clc->hdr.type == SMC_CLC_CONFIRM) { in smc_clc_send_confirm_accept()
[all …]
A Daf_smc.c460 struct smc_clc_msg_accept_confirm *clc) in smc_conn_save_peer_info_fce() argument
467 if (clc->hdr.version == SMC_V1 || in smc_conn_save_peer_info_fce()
495 smc->conn.peer_rmbe_idx = clc->r0.rmbe_idx; in smcr_conn_save_peer_info()
507 smc->conn.peer_rmbe_idx = clc->d0.dmbe_idx; in smcd_conn_save_peer_info()
508 smc->conn.peer_token = clc->d0.token; in smcd_conn_save_peer_info()
519 smcd_conn_save_peer_info(smc, clc); in smc_conn_save_peer_info()
521 smcr_conn_save_peer_info(smc, clc); in smc_conn_save_peer_info()
522 smc_conn_save_peer_info_fce(smc, clc); in smc_conn_save_peer_info()
529 link->peer_qpn = ntoh24(clc->r0.qpn); in smc_link_save_peer_info()
532 link->peer_psn = ntoh24(clc->r0.psn); in smc_link_save_peer_info()
[all …]
A Dsmc_core.h482 struct smc_clc_msg_accept_confirm *clc);
A Dsmc_core.c2395 struct smc_clc_msg_accept_confirm *clc) in smc_rmb_rtoken_handling() argument
2397 conn->rtoken_idx = smc_rtoken_add(lnk, clc->r0.rmb_dma_addr, in smc_rmb_rtoken_handling()
2398 clc->r0.rmb_rkey); in smc_rmb_rtoken_handling()
/linux/arch/x86/kernel/
A Dhpet.c1283 uint64_t clc; in hpet_rtc_timer_init() local
1285 clc = (uint64_t) evt->mult * NSEC_PER_SEC; in hpet_rtc_timer_init()
1286 clc >>= evt->shift + DEFAULT_RTC_SHIFT; in hpet_rtc_timer_init()
1287 hpet_default_delta = clc; in hpet_rtc_timer_init()
1372 uint64_t clc; in hpet_set_periodic_freq() local
1382 clc = (uint64_t) evt->mult * NSEC_PER_SEC; in hpet_set_periodic_freq()
1383 do_div(clc, freq); in hpet_set_periodic_freq()
1384 clc >>= evt->shift; in hpet_set_periodic_freq()
1385 hpet_pie_delta = clc; in hpet_set_periodic_freq()
/linux/arch/x86/lib/
A Dcsum-copy_64.S61 clc
138 clc
168 clc
/linux/drivers/clocksource/
A Dbcm_kona_timer.c101 static int kona_timer_set_next_event(unsigned long clc, in kona_timer_set_next_event() argument
123 writel(lsw + clc, timers.tmr_regs + KONA_GPTIMER_STCM0_OFFSET); in kona_timer_set_next_event()
/linux/net/sched/
A Dsch_drr.c42 struct Qdisc_class_common *clc; in drr_find_class() local
44 clc = qdisc_class_find(&q->clhash, classid); in drr_find_class()
45 if (clc == NULL) in drr_find_class()
47 return container_of(clc, struct drr_class, common); in drr_find_class()
A Dsch_qfq.c209 struct Qdisc_class_common *clc; in qfq_find_class() local
211 clc = qdisc_class_find(&q->clhash, classid); in qfq_find_class()
212 if (clc == NULL) in qfq_find_class()
214 return container_of(clc, struct qfq_class, common); in qfq_find_class()
A Dsch_hfsc.c867 struct Qdisc_class_common *clc; in hfsc_find_class() local
869 clc = qdisc_class_find(&q->clhash, classid); in hfsc_find_class()
870 if (clc == NULL) in hfsc_find_class()
872 return container_of(clc, struct hfsc_class, cl_common); in hfsc_find_class()
A Dsch_cbq.c168 struct Qdisc_class_common *clc; in cbq_class_lookup() local
170 clc = qdisc_class_find(&q->clhash, classid); in cbq_class_lookup()
171 if (clc == NULL) in cbq_class_lookup()
173 return container_of(clc, struct cbq_class, common); in cbq_class_lookup()
A Dsch_htb.c190 struct Qdisc_class_common *clc; in htb_find() local
192 clc = qdisc_class_find(&q->clhash, handle); in htb_find()
193 if (clc == NULL) in htb_find()
195 return container_of(clc, struct htb_class, common); in htb_find()
/linux/arch/s390/boot/
A Dhead.S194 clc 0(3,%r4),.L_hdr # if it is HDRx
196 clc 0(3,%r4),.L_eof # if it is EOFx
220 clc 0(3,%r2),.L_hdr # skip HDRx and EOFx
222 clc 0(3,%r2),.L_eof
/linux/arch/x86/math-emu/
A Ddiv_Xsig.S115 clc
A Dreg_u_div.S399 clc
/linux/Documentation/powerpc/
A Dhvcs.rst394 adapter. The first vty partner corresponds to the first clc item, the
395 second vty partner to the second clc item, etc.
398 "current_vty" prints the clc of the currently selected partner vty when
401 The current_vty can be changed by writing a valid partner clc to the entry
/linux/arch/s390/tools/
A Dopcodes.txt720 d5 clc SS_L0RDRD

Completed in 61 milliseconds