Home
last modified time | relevance | path

Searched refs:v64 (Results 1 – 16 of 16) sorted by relevance

/linux-6.3-rc2/drivers/ntb/hw/intel/
A Dntb_hw_gen3.c263 union { u64 v64; u32 v32; u16 v16; } u; in ndev_ntb3_debugfs_read() member
322 "Doorbell Mask -\t\t%#llx\n", u.v64); in ndev_ntb3_debugfs_read()
326 "Doorbell Bell -\t\t%#llx\n", u.v64); in ndev_ntb3_debugfs_read()
333 "IMBAR1XBASE -\t\t%#018llx\n", u.v64); in ndev_ntb3_debugfs_read()
337 "IMBAR2XBASE -\t\t%#018llx\n", u.v64); in ndev_ntb3_debugfs_read()
341 "IMBAR1XLMT -\t\t\t%#018llx\n", u.v64); in ndev_ntb3_debugfs_read()
361 "EMBAR1XLMT -\t\t%#018llx\n", u.v64); in ndev_ntb3_debugfs_read()
365 "EMBAR2XLMT -\t\t%#018llx\n", u.v64); in ndev_ntb3_debugfs_read()
372 "EMBAR0 -\t\t%#018llx\n", u.v64); in ndev_ntb3_debugfs_read()
376 "EMBAR1 -\t\t%#018llx\n", u.v64); in ndev_ntb3_debugfs_read()
[all …]
A Dntb_hw_gen4.c227 union { u64 v64; u32 v32; u16 v16; } u; in ndev_ntb4_debugfs_read() member
284 u.v64 = ndev_db_read(ndev, mmio + ndev->self_reg->db_mask); in ndev_ntb4_debugfs_read()
286 "Doorbell Mask -\t\t%#llx\n", u.v64); in ndev_ntb4_debugfs_read()
291 u.v64 = ioread64(mmio + GEN4_IM23XBASE_OFFSET); in ndev_ntb4_debugfs_read()
293 "IM23XBASE -\t\t%#018llx\n", u.v64); in ndev_ntb4_debugfs_read()
295 u.v64 = ioread64(mmio + GEN4_IM45XBASE_OFFSET); in ndev_ntb4_debugfs_read()
297 "IM45XBASE -\t\t%#018llx\n", u.v64); in ndev_ntb4_debugfs_read()
299 u.v64 = ioread64(mmio + GEN4_IM23XLMT_OFFSET); in ndev_ntb4_debugfs_read()
301 "IM23XLMT -\t\t\t%#018llx\n", u.v64); in ndev_ntb4_debugfs_read()
303 u.v64 = ioread64(mmio + GEN4_IM45XLMT_OFFSET); in ndev_ntb4_debugfs_read()
[all …]
A Dntb_hw_gen1.c571 "Doorbell Mask -\t\t%#llx\n", u.v64); in ndev_ntb_debugfs_read()
575 "Doorbell Bell -\t\t%#llx\n", u.v64); in ndev_ntb_debugfs_read()
617 "XLAT23 -\t\t%#018llx\n", u.v64); in ndev_ntb_debugfs_read()
630 "XLAT45 -\t\t%#018llx\n", u.v64); in ndev_ntb_debugfs_read()
635 "LMT23 -\t\t\t%#018llx\n", u.v64); in ndev_ntb_debugfs_read()
647 "LMT45 -\t\t\t%#018llx\n", u.v64); in ndev_ntb_debugfs_read()
672 u.v64); in ndev_ntb_debugfs_read()
692 u.v64); in ndev_ntb_debugfs_read()
700 "SBAR01 -\t\t%#018llx\n", u.v64); in ndev_ntb_debugfs_read()
704 "SBAR23 -\t\t%#018llx\n", u.v64); in ndev_ntb_debugfs_read()
[all …]
/linux-6.3-rc2/drivers/net/ethernet/netronome/nfp/nfpcore/
A Dnfp_target.c480 u64 v64; in nfp_encode_basic() local
501 v64 = GENMASK_ULL(iid_lsb + 5, iid_lsb); in nfp_encode_basic()
502 *addr &= ~v64; in nfp_encode_basic()
575 u64 v64; in nfp_encode_mu() local
590 v64 = GENMASK_ULL(iid_lsb + 5, iid_lsb); in nfp_encode_mu()
591 *addr &= ~v64; in nfp_encode_mu()
597 v64 = GENMASK_ULL(iid_lsb + 5, iid_lsb); in nfp_encode_mu()
598 *addr &= ~v64; in nfp_encode_mu()
618 v64 = GENMASK_ULL(iid_lsb + 5, iid_lsb); in nfp_encode_mu()
619 *addr &= ~v64; in nfp_encode_mu()
[all …]
/linux-6.3-rc2/drivers/net/can/dev/
A Dcalc_bittiming.c78 u64 v64; in can_calc_bittiming() local
133 v64 = (u64)best_bitrate_error * 1000; in can_calc_bittiming()
134 do_div(v64, bt->bitrate); in can_calc_bittiming()
135 bitrate_error = (u32)v64; in can_calc_bittiming()
152 v64 = (u64)best_brp * 1000 * 1000 * 1000; in can_calc_bittiming()
153 do_div(v64, priv->clock.freq); in can_calc_bittiming()
154 bt->tq = (u32)v64; in can_calc_bittiming()
/linux-6.3-rc2/tools/testing/selftests/bpf/prog_tests/
A Dbtf_write.c12 const struct btf_enum64 *v64; in gen_btf() local
324 v64 = btf_enum64(t) + 0; in gen_btf()
325 ASSERT_STREQ(btf__str_by_offset(btf, v64->name_off), "v1", "v1_name"); in gen_btf()
326 ASSERT_EQ(v64->val_hi32, 0xffffffff, "v1_val"); in gen_btf()
327 ASSERT_EQ(v64->val_lo32, 0xffffffff, "v1_val"); in gen_btf()
328 v64 = btf_enum64(t) + 1; in gen_btf()
330 ASSERT_EQ(v64->val_hi32, 0x1, "v2_val"); in gen_btf()
331 ASSERT_EQ(v64->val_lo32, 0x23456789, "v2_val"); in gen_btf()
346 v64 = btf_enum64(t) + 0; in gen_btf()
348 ASSERT_EQ(v64->val_hi32, 0xffffffff, "v1_val"); in gen_btf()
[all …]
/linux-6.3-rc2/drivers/dma/
A Dfsldma.h89 typedef u64 __bitwise v64; typedef
93 v64 src_addr;
94 v64 dst_addr;
95 v64 next_ln_addr;
/linux-6.3-rc2/net/ipv6/ila/
A Dila_lwt.c236 p->locator.v64 = (__force __be64)nla_get_u64(tb[ILA_ATTR_LOCATOR]); in ila_build_state()
268 if (nla_put_u64_64bit(skb, ILA_ATTR_LOCATOR, (__force u64)p->locator.v64, in ila_fill_encap_info()
303 return (a_p->locator.v64 != b_p->locator.v64); in ila_encap_cmp()
A Dila.h27 __be64 v64; member
50 __be64 v64; member
A Dila_common.c18 if (!p->locator_match.v64) in ila_init_saved_csum()
28 if (p->locator_match.v64) in get_csum_diff_iaddr()
A Dila_xlat.c72 return (ila->xp.ip.locator_match.v64 != *(__be64 *)arg->key); in ila_cmpfn()
102 xp->ip.locator.v64 = (__force __be64)nla_get_u64( in parse_nl_config()
106 xp->ip.locator_match.v64 = (__force __be64)nla_get_u64( in parse_nl_config()
427 (__force u64)ila->xp.ip.locator.v64, in ila_fill_info()
430 (__force u64)ila->xp.ip.locator_match.v64, in ila_fill_info()
/linux-6.3-rc2/arch/x86/include/asm/
A Ddiv64.h46 u64 v64; in div_u64_rem() member
59 return d.v64; in div_u64_rem()
/linux-6.3-rc2/net/ipv4/
A Dtcp_cdg.c68 u64 v64; member
272 if (after(ack, ca->rtt_seq) && ca->rtt.v64) { in tcp_cdg_cong_avoid()
275 if (ca->rtt_prev.v64) in tcp_cdg_cong_avoid()
279 ca->rtt.v64 = 0; in tcp_cdg_cong_avoid()
366 ca->rtt.v64 = 0; in tcp_cdg_cwnd_event()
/linux-6.3-rc2/drivers/ntb/hw/amd/
A Dntb_hw_amd.c846 union { u64 v64; u32 v32; u16 v16; } u; in ndev_debugfs_read() member
906 u.v64 = read64(mmio + AMD_BAR1XLAT_OFFSET); in ndev_debugfs_read()
908 "XLAT1 -\t\t%#018llx\n", u.v64); in ndev_debugfs_read()
910 u.v64 = read64(ndev->self_mmio + AMD_BAR23XLAT_OFFSET); in ndev_debugfs_read()
912 "XLAT23 -\t\t%#018llx\n", u.v64); in ndev_debugfs_read()
914 u.v64 = read64(ndev->self_mmio + AMD_BAR45XLAT_OFFSET); in ndev_debugfs_read()
916 "XLAT45 -\t\t%#018llx\n", u.v64); in ndev_debugfs_read()
922 u.v64 = read64(ndev->self_mmio + AMD_BAR23LMT_OFFSET); in ndev_debugfs_read()
924 "LMT23 -\t\t\t%#018llx\n", u.v64); in ndev_debugfs_read()
926 u.v64 = read64(ndev->self_mmio + AMD_BAR45LMT_OFFSET); in ndev_debugfs_read()
[all …]
/linux-6.3-rc2/arch/x86/boot/
A Dstring.c204 u64 v64; in __div_u64_rem() member
217 return d.v64; in __div_u64_rem()
/linux-6.3-rc2/Documentation/devicetree/bindings/mips/brcm/
A Dsoc.txt92 "brcm,brcmstb-ddr-phy-v64.5"
100 compatible = "brcm,brcmstb-ddr-phy-v64.5";

Completed in 32 milliseconds