Searched defs:RINT (Results 1 – 3 of 3) sorted by relevance
248 public static final ComposableFunction RINT = new ComposableFunction() { field in ComposableFunction
85 #define RINT(R) ((uint32_t)((R) > 0 ? ((R) + 0.5) : ((R)-0.5))) macro
32 #define RINT(x) ((x) < 0 ? (int)((x)-0.5) : (int)((x) + 0.5)) macro