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

Function imin

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

Source from the content-addressed store, hash-verified

90}
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); }

Callers 15

update_pagesFunction · 0.85
tcp_output.cFile · 0.85
syncache_addFunction · 0.85
syncookie_lookupFunction · 0.85
in_pcbinfo_initFunction · 0.85
tcptw_auto_sizeFunction · 0.85
tcp_do_segmentFunction · 0.85
tcp_prr_partialackFunction · 0.85
cdg_ack_receivedFunction · 0.85
memioctl_mdFunction · 0.85
ip6_forwardFunction · 0.85
memioctl_mdFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected