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

Function div_u64_rem

dpdk/drivers/net/axgbe/axgbe_ethdev.c:1541–1546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1539}
1540
1541static inline uint64_t
1542div_u64_rem(uint64_t dividend, uint32_t divisor, uint32_t *remainder)
1543{
1544 *remainder = dividend % divisor;
1545 return dividend / divisor;
1546}
1547
1548static inline uint64_t
1549div_u64(uint64_t dividend, uint32_t divisor)

Callers 1

div_u64Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected