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

Function lmin

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

Source from the content-addressed store, hash-verified

92static __inline int imin(int a, int b) { return (a < b ? a : b); }
93static __inline long lmax(long a, long b) { return (a > b ? a : b); }
94static __inline long lmin(long a, long b) { return (a < b ? a : b); }
95static __inline u_int max(u_int a, u_int b) { return (a > b ? a : b); }
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); }

Callers 7

tcp_output.cFile · 0.85
tcp_twstartFunction · 0.85
rack.cFile · 0.85
bbr.cFile · 0.85
bufinitFunction · 0.85
vm_ksubmap_initFunction · 0.85
zone_fetch_bucketFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected