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

Function qmin

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

Source from the content-addressed store, hash-verified

96static __inline u_int min(u_int a, u_int b) { return (a < b ? a : b); }
97static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); }
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); }

Callers 3

tunable_mbinitFunction · 0.85
hardppsFunction · 0.85
vm_daemonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected