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

Function lmax

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

Source from the content-addressed store, hash-verified

91static __inline int imax(int a, int b) { return (a > b ? a : b); }
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); }

Callers 10

tcp_output.cFile · 0.85
tcp_twstartFunction · 0.85
rack.cFile · 0.85
bbr.cFile · 0.85
cubic_cwndFunction · 0.85
bufinitFunction · 0.85
tunable_mbinitFunction · 0.85
round_freqFunction · 0.85
hardppsFunction · 0.85
bucket_cache_reclaimFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected