Searched defs:abs64 (Results 1 – 4 of 4) sorted by relevance
545 abs64(ev_int64_t i) in abs64() function
307 #define abs64(x) ({ uint64_t t = (x) >> 63; ((x) ^ t) - t; }) macro
114 static __inline int64_t abs64(int64_t a) { return (a < 0 ? -a : a); } in abs64() function