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

Function imax

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

Source from the content-addressed store, hash-verified

89 return (bcd == 0 || (bcd > 0 && bcd <= 0x99 && bcd2bin_data[bcd] != 0));
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); }

Callers 15

tcp_output.cFile · 0.85
udp_pcblistFunction · 0.85
div_pcblistFunction · 0.85
syncache_addFunction · 0.85
syncookie_lookupFunction · 0.85
tcptw_auto_sizeFunction · 0.85
tcp_do_segmentFunction · 0.85
tcp_xmit_timerFunction · 0.85
tcp_prr_partialackFunction · 0.85
tcp_pcblistFunction · 0.85
ipreass_initFunction · 0.85
ipreass_zone_changeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected