/openbmc/linux/net/smc/ |
H A D | smc_clc.c | 400 smc_clc_msg_acc_conf_valid(struct smc_clc_msg_accept_confirm *clc) in smc_clc_msg_acc_conf_valid() argument 402 struct smc_clc_msg_hdr *hdr = &clc->hdr; in smc_clc_msg_acc_conf_valid() 472 struct smc_clc_msg_accept_confirm *clc; in smc_clc_msg_hdr_valid() local 490 clc = (struct smc_clc_msg_accept_confirm *)clcm; in smc_clc_msg_hdr_valid() 491 if (!smc_clc_msg_acc_conf_valid(clc)) in smc_clc_msg_hdr_valid() 494 ((u8 *)clc + ntohs(clc->hdr.length) - sizeof(*trl)); in smc_clc_msg_hdr_valid() 1041 struct smc_clc_msg_accept_confirm *clc, in smcd_clc_prep_confirm_accept() argument 1054 memcpy(clc->hdr.eyecatcher, SMCD_EYECATCHER, in smcd_clc_prep_confirm_accept() 1057 clc->hdr.typev1 = SMC_TYPE_D; in smcd_clc_prep_confirm_accept() 1058 clc->d0.gid = htonll(smcd_gid.gid); in smcd_clc_prep_confirm_accept() [all …]
|
H A D | smc_clc.h | 407 smc_get_clc_first_contact_ext(struct smc_clc_msg_accept_confirm *clc, in smc_get_clc_first_contact_ext() argument 412 if (clc->hdr.version == SMC_V1 || in smc_get_clc_first_contact_ext() 413 !(clc->hdr.typev2 & SMC_FIRST_CONTACT_MASK)) in smc_get_clc_first_contact_ext() 423 return (struct smc_clc_first_contact_ext *)(((u8 *)clc) + clc_v2_len); in smc_get_clc_first_contact_ext()
|
H A D | af_smc.c | 669 struct smc_clc_msg_accept_confirm *clc) in smc_conn_save_peer_info_fce() argument 674 if (clc->hdr.version == SMC_V1 || in smc_conn_save_peer_info_fce() 675 !(clc->hdr.typev2 & SMC_FIRST_CONTACT_MASK)) in smc_conn_save_peer_info_fce() 679 memcpy(smc->conn.lgr->negotiated_eid, clc->d1.eid, in smc_conn_save_peer_info_fce() 683 memcpy(smc->conn.lgr->negotiated_eid, clc->r1.eid, in smc_conn_save_peer_info_fce() 687 fce = (struct smc_clc_first_contact_ext *)(((u8 *)clc) + clc_v2_len); in smc_conn_save_peer_info_fce() 696 struct smc_clc_msg_accept_confirm *clc) in smcr_conn_save_peer_info() argument 698 int bufsize = smc_uncompress_bufsize(clc->r0.rmbe_size); in smcr_conn_save_peer_info() 700 smc->conn.peer_rmbe_idx = clc->r0.rmbe_idx; in smcr_conn_save_peer_info() 701 smc->conn.local_tx_ctrl.token = ntohl(clc->r0.rmbe_alert_token); in smcr_conn_save_peer_info() [all …]
|
/openbmc/linux/kernel/time/ |
H A D | clockevents.c | 35 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 247 clc = ((unsigned long long) delta * dev->mult) >> dev->shift; in clockevents_program_min_delta() 248 if (dev->set_next_event((unsigned long) clc, dev) == 0) in clockevents_program_min_delta() [all …]
|
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7921/ |
H A D | mcu.c | 371 const struct mt7921_clc *clc; in mt7921_load_clc() local 423 for (offset = 0; offset < len; offset += le32_to_cpu(clc->len)) { in mt7921_load_clc() 424 clc = (const struct mt7921_clc *)(clc_base + offset); in mt7921_load_clc() 427 if (phy->clc[clc->idx]) in mt7921_load_clc() 431 if (clc->idx == MT7921_CLC_POWER && in mt7921_load_clc() 432 u8_get_bits(clc->type, MT_EE_HW_TYPE_ENCAP) != hw_encap) in mt7921_load_clc() 435 phy->clc[clc->idx] = devm_kmemdup(mdev->dev, clc, in mt7921_load_clc() 436 le32_to_cpu(clc->len), in mt7921_load_clc() 439 if (!phy->clc[clc->idx]) { in mt7921_load_clc() 1123 struct mt7921_clc *clc, in __mt7921_mcu_set_clc() argument [all …]
|
/openbmc/linux/arch/x86/kernel/ |
H A D | hpet.c | 1285 uint64_t clc; in hpet_rtc_timer_init() local 1287 clc = (uint64_t) evt->mult * NSEC_PER_SEC; in hpet_rtc_timer_init() 1288 clc >>= evt->shift + DEFAULT_RTC_SHIFT; in hpet_rtc_timer_init() 1289 hpet_default_delta = clc; in hpet_rtc_timer_init() 1374 uint64_t clc; in hpet_set_periodic_freq() local 1384 clc = (uint64_t) evt->mult * NSEC_PER_SEC; in hpet_set_periodic_freq() 1385 do_div(clc, freq); in hpet_set_periodic_freq() 1386 clc >>= evt->shift; in hpet_set_periodic_freq() 1387 hpet_pie_delta = clc; in hpet_set_periodic_freq()
|
/openbmc/linux/arch/x86/lib/ |
H A D | csum-copy_64.S | 61 clc 138 clc 168 clc
|
/openbmc/linux/drivers/clocksource/ |
H A D | bcm_kona_timer.c | 91 static int kona_timer_set_next_event(unsigned long clc, in kona_timer_set_next_event() argument 113 writel(lsw + clc, timers.tmr_regs + KONA_GPTIMER_STCM0_OFFSET); in kona_timer_set_next_event()
|
/openbmc/openbmc/poky/meta/recipes-graphics/mesa/files/ |
H A D | 0001-Revert-meson-do-not-pull-in-clc-for-clover.patch | 4 Subject: [PATCH] Revert "meson: do not pull in clc for clover" 51 subdir('clc')
|
/openbmc/qemu/tests/tcg/s390x/ |
H A D | stpq.S | 7 clc stored_value(16),value
|
H A D | lpsw.S | 21 clc svc_old_psw(16),expected_psw /* correct full PSW? */
|
H A D | lpswe-early.S | 26 clc program_old_psw(16),bad_psw /* correct old PSW? */
|
H A D | stosm-early.S | 27 clc program_old_psw(16),expected_old_psw /* correct old PSW? */
|
H A D | ssm-early.S | 27 clc program_old_psw(16),expected_old_psw /* correct old PSW? */
|
H A D | exrl-ssm-early.S | 29 clc program_old_psw(16),expected_old_psw /* correct old PSW? */
|
H A D | pgm-specification-softmmu.S | 28 clc expected_old_psw(16),program_old_psw /* correct location? */
|
H A D | precise-smc-softmmu.S | 43 clc program_old_psw(16),expected_old_psw2 /* correct old PSW? */
|
H A D | sam.S | 27 clc suppressed_psw(16),program_old_psw /* correct location? */
|
H A D | Makefile.target | 44 TESTS+=clc
|
/openbmc/linux/net/sched/ |
H A D | sch_drr.c | 41 struct Qdisc_class_common *clc; in drr_find_class() local 43 clc = qdisc_class_find(&q->clhash, classid); in drr_find_class() 44 if (clc == NULL) in drr_find_class() 46 return container_of(clc, struct drr_class, common); in drr_find_class()
|
H A D | sch_qfq.c | 208 struct Qdisc_class_common *clc; in qfq_find_class() local 210 clc = qdisc_class_find(&q->clhash, classid); in qfq_find_class() 211 if (clc == NULL) in qfq_find_class() 213 return container_of(clc, struct qfq_class, common); in qfq_find_class()
|
H A D | sch_hfsc.c | 866 struct Qdisc_class_common *clc; in hfsc_find_class() local 868 clc = qdisc_class_find(&q->clhash, classid); in hfsc_find_class() 869 if (clc == NULL) in hfsc_find_class() 871 return container_of(clc, struct hfsc_class, cl_common); in hfsc_find_class()
|
/openbmc/linux/arch/s390/boot/ |
H A D | head.S | 66 clc 0(3,%r4),0(%r13) # if it is HDRx 69 clc 0(3,%r4),0(%r13) # if it is EOFx 91 clc 0(3,%r2),0(%r13) 94 clc 0(3,%r2),0(%r13)
|
/openbmc/linux/arch/x86/math-emu/ |
H A D | div_Xsig.S | 115 clc
|
/openbmc/openbmc/poky/meta/recipes-graphics/mesa/ |
H A D | mesa.inc | 21 file://0001-Revert-meson-do-not-pull-in-clc-for-clover.patch \ 80 EXTRA_OEMESON:append:class-target = " ${@bb.utils.contains('PACKAGECONFIG', 'opencl', '-Dintel-clc=… 81 EXTRA_OEMESON:append:class-native = " ${@bb.utils.contains('PACKAGECONFIG', 'opencl', '-Dintel-clc=…
|