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

Function abs

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

Source from the content-addressed store, hash-verified

113static __inline off_t omax(off_t a, off_t b) { return (a > b ? a : b); }
114static __inline off_t omin(off_t a, off_t b) { return (a < b ? a : b); }
115static __inline int abs(int a) { return (a < 0 ? -a : a); }
116static __inline long labs(long a) { return (a < 0 ? -a : a); }
117static __inline quad_t qabs(quad_t a) { return (a < 0 ? -a : a); }
118

Callers 15

jquery.qtip.jsFile · 0.85
FSE_normalizeCountFunction · 0.85
fixjumpFunction · 0.85
FSE_normalizeCountFunction · 0.85
ar9300_find_mag_approxFunction · 0.85
sta_compareFunction · 0.85
jz4780_clk_gen_set_freqFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected