Searched defs:abs (Results 1 – 5 of 5) sorted by relevance
34 abs(int j) in abs() function
37 static __inline int abs(int __n) { return (__n < 0) ? -__n : __n; } in abs() function
52 struct virtio_input_absinfo abs; member
92 #define EVIOCGABS(abs) _IOR('E', 0x40 + (abs), struct input_absinfo) argument93 #define EVIOCSABS(abs) _IOW('E', 0xc0 + (abs), struct input_absinfo) argument
914 TEST(stdlib, abs) { in TEST() argument