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

Function ulmax

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

Source from the content-addressed store, hash-verified

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); }
102static __inline u_long ulmin(u_long a, u_long b) { return (a < b ? a : b); }
103static __inline __uintmax_t ummax(__uintmax_t a, __uintmax_t b)
104{

Callers 5

cdg_ack_receivedFunction · 0.85
cubic_after_idleFunction · 0.85
resource_list_allocFunction · 0.85
vm_reserv_alloc_contigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected