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

Function uqmin

freebsd/sys/libkern.h:100–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); }
99static __inline u_quad_t uqmax(u_quad_t a, u_quad_t b) { return (a > b ? a : b); }
100static __inline u_quad_t uqmin(u_quad_t a, u_quad_t b) { return (a < b ? a : b); }
101static __inline u_long ulmax(u_long a, u_long b) { return (a > b ? a : b); }
102static __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); }
103static __inline __uintmax_t ummax(__uintmax_t a, __uintmax_t b)

Callers 3

pfioctlFunction · 0.85
__bbr_get_bwFunction · 0.85
probe_tsc_freqFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected