MCPcopy Create free account
hub / github.com/F-Stack/f-stack / io_write64_twopart

Function io_write64_twopart

dpdk/drivers/crypto/virtio/virtio_pci.c:42–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40}
41
42static inline void
43io_write64_twopart(uint64_t val, uint32_t *lo, uint32_t *hi)
44{
45 rte_write32(val & ((1ULL << 32) - 1), lo);
46 rte_write32(val >> 32, hi);
47}
48
49static void
50modern_read_dev_config(struct virtio_crypto_hw *hw, size_t offset,

Callers 2

modern_setup_queueFunction · 0.70
modern_del_queueFunction · 0.70

Calls 1

rte_write32Function · 0.50

Tested by

no test coverage detected